473,806 Members | 2,259 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

CSS2: what is the container of everything ?

I have happily lived for 15 years (our first web server started in 1993)
without CSS, but I now decided to learn and experiment with it.

My personal preference has always been that the width of items in my
pages are USUALLY not set in fixed values, but as percentages (e.g. for
frames in frameset, or tables w.r.t the display area), since a priori I
cannot know what screen or window size users will use, and the browser
window can be arbitrarily resized in the horizontal direction, ideally
with no horizontal scrollbar unless really needed. Similarly I do not
use absolute font names or sizes (otherwise said I care for content and
logical layout but not for a precise look being the same everywhere).

Some of my colleagues however have written pages which define pages with
fixed fonts, or a fixed width. Unfortunately if the window is not wide
enough, one has to scroll horizontally.

I hoped one could cure that, and apparently one can do something on a
simple (single column) document with something like :

body {width: 20cm; max-width: 80%;}

(on a larger window the document has a fixed size and the part at the
right is unused, as now; if one resizes the window smaller, however the
document is always contained in the window, and no horizontal scroll bar
is required)

I then tried to develop a frameless frame-like appearance.

body {width: 100%; }
#myhead {position: fixed ; top: 0 ; left: 0; right:0; bottom: auto;
width: 100%; height: 4.5em; background: white; z-index: 1}
#main {position: absolute: top: 4.5em ; left: auto; right: auto;
bottom: auto; height: auto; width: 76%; margin: 2%; z-index: 0}
#sub {position: fixed ; top: 4.5em ; right: 0; bottom: 0 ; left: auto;
width: 18%; background: aqua; margin: 0 1%; zindex: 1}

Using appropriate DIVs there is a title area on the top, occupying the
entire width (myhead), a navigation area on the right (sub), and the
document goes in the main area (with vertical scroll bars scrolling it
only). I can resize the window horizontally and everything remains
visible.

<div id=myhead>space for a fixed page title</div>
<div id=main ... the bulk of the page </div>
<div id=sub ... the navigation area </div>

+---------------------------------+
| myhead |
+---------------------------------+
| | *|
| main | sub *|
| | *|
+---------------------------------+
So far so good (except that the "sub" area is not aligned flush right,
but has some 10 pixels to its right. Why ?). That's how *I* like it.

Now what if I want to combine the two things ? I.e. do as my colleagues
like. I.e. use body {width: 20cm; max-width: 80%;} and the myhead, main
and sub classes ?

I'd expect to produce an overall area which is normally 20 cm wide with
unused space on the right, or 80% of the window if resized smaller, and
that this overall area is divided into three parts as in the drawing
above (is not "body" the container of everything ?)

Instead it looks like ONLY the "main" area is rescaled to the smaller
width, and the other two still make reference to the window width.

What am I doing wrong ?

--
----------------------------------------------------------------------
no****@mi.iasf. cnr.it is a newsreading account used by more persons to
avoid unwanted spam. Any mail returning to this address will be rejected.
Users can disclose their e-mail address in the article if they wish so.
Oct 14 '08 #1
13 1784
On 2008-10-14, LC's No-Spam Newsreading account <no****@mi.iasf .cnr.itwrote:
[...]
I then tried to develop a frameless frame-like appearance.

body {width: 100%; }
#myhead {position: fixed ; top: 0 ; left: 0; right:0; bottom: auto;
width: 100%; height: 4.5em; background: white; z-index: 1}
#main {position: absolute: top: 4.5em ; left: auto; right: auto;
bottom: auto; height: auto; width: 76%; margin: 2%; z-index: 0}
#sub {position: fixed ; top: 4.5em ; right: 0; bottom: 0 ; left: auto;
width: 18%; background: aqua; margin: 0 1%; zindex: 1}

Using appropriate DIVs there is a title area on the top, occupying the
entire width (myhead), a navigation area on the right (sub), and the
document goes in the main area (with vertical scroll bars scrolling it
only). I can resize the window horizontally and everything remains
visible.

<div id=myhead>space for a fixed page title</div>
<div id=main ... the bulk of the page </div>
<div id=sub ... the navigation area </div>

+---------------------------------+
| myhead |
+---------------------------------+
| | *|
| main | sub *|
| | *|
+---------------------------------+
So far so good (except that the "sub" area is not aligned flush right,
but has some 10 pixels to its right. Why ?). That's how *I* like it.

Now what if I want to combine the two things ? I.e. do as my colleagues
like. I.e. use body {width: 20cm; max-width: 80%;} and the myhead, main
and sub classes ?

I'd expect to produce an overall area which is normally 20 cm wide with
unused space on the right, or 80% of the window if resized smaller, and
that this overall area is divided into three parts as in the drawing
above (is not "body" the container of everything ?)

Instead it looks like ONLY the "main" area is rescaled to the smaller
width, and the other two still make reference to the window width.

What am I doing wrong ?
Percentages are relative to the "containing block".

The containing block for absolutely positioned things is the nearest
ancestor with a position of anything except static (the initial value),
and if there isn't one the viewport.

Right now it's the viewport.

So if you make body position: relative, it becomes the containing block
for main.

But the containing block for fixed position things is _always_ the
viewport, and you can't change that.

So don't use position: fixed for myhead and sub. Instead use position:
absolute for everything but make #main overflow: auto so you can scroll
things around inside it.

You can get pretty much the same effect that way.
Oct 14 '08 #2
On Tue, 14 Oct 2008, Ben C wrote:
On 2008-10-14, LC wrote:
>body {width: 100%; }
#myhead {position: fixed ; top: 0 ; left: 0; right:0; bottom: auto;
width: 100%; height: 4.5em; background: white; z-index: 1}
#main {position: absolute: top: 4.5em ; left: auto; right: auto;
bottom: auto; height: auto; width: 76%; margin: 2%; z-index: 0}
#sub {position: fixed ; top: 4.5em ; right: 0; bottom: 0 ; left: auto;
width: 18%; background: aqua; margin: 0 1%; zindex: 1}
(actually I use also a spacer so that the top lines of main are not
hidden under myhead).
So don't use position: fixed for myhead and sub. Instead use position:
absolute for everything but make #main overflow: auto so you can scroll
things around inside it.
Did you mean perhaps instead "use position: FIXED for everything but
make #main overflow: auto" ? If I do that way, with or without body
{position: relative;}, then IT WORKS as intended !!

If I do as you say all "aboslute", this causes everything (myhead main
and sub) to be scrolled in a solidal way. What I want instead is that
the header and the navigation bar remain always on the screen and only
main scrolls.

NB I obtain the same result both with and without
body {position: relative}

The only difference is that with body {position: relative} an about
10pix border appears on top of the header (why ? and why do I always
have a similar border at the right of sub ?)

OK, I understand that. I confused "margin" (which is outside the box)
and "padding" (which is inside it). With padding I can get rid of the
border on the right of sub ... still there is a thinner border if I use
body {position: relative} which goes away if I do
body {position: relative; margin:0 }

Where did it inherit a non-zero margin I did not set ?

Anyhow, I still stand with my original question
>Now what if I want to combine the two things ? I.e. do as my colleagues
like. I.e. use body {width: 20cm; max-width: 80%;} and the myhead, main
and sub classes ?

I'd expect to produce an overall area which is normally 20 cm wide with
unused space on the right, or 80% of the window if resized smaller, and
that this overall area is divided into three parts as in the drawing
If I apply the above, surprisingly enough, myhead and sub are positioned
using the entire viewport, and only the content of main gets a narrower
width
--
----------------------------------------------------------------------
no****@mi.iasf. cnr.it is a newsreading account used by more persons to
avoid unwanted spam. Any mail returning to this address will be rejected.
Users can disclose their e-mail address in the article if they wish so.
Oct 15 '08 #3
On 2008-10-15, LC's No-Spam Newsreading account <no****@mi.iasf .cnr.itwrote:
On Tue, 14 Oct 2008, Ben C wrote:
>On 2008-10-14, LC wrote:
>>body {width: 100%; }
#myhead {position: fixed ; top: 0 ; left: 0; right:0; bottom: auto;
width: 100%; height: 4.5em; background: white; z-index: 1}
#main {position: absolute: top: 4.5em ; left: auto; right: auto;
bottom: auto; height: auto; width: 76%; margin: 2%; z-index: 0}
#sub {position: fixed ; top: 4.5em ; right: 0; bottom: 0 ; left: auto;
width: 18%; background: aqua; margin: 0 1%; zindex: 1}

(actually I use also a spacer so that the top lines of main are not
hidden under myhead).
>So don't use position: fixed for myhead and sub. Instead use position:
absolute for everything but make #main overflow: auto so you can scroll
things around inside it.

Did you mean perhaps instead "use position: FIXED for everything but
make #main overflow: auto" ? If I do that way, with or without body
{position: relative;}, then IT WORKS as intended !!
No I did mean position: absolute.
If I do as you say all "aboslute", this causes everything (myhead main
and sub) to be scrolled in a solidal way. What I want instead is that
the header and the navigation bar remain always on the screen and only
main scrolls.
To make it work with position: absolute you make sure all three divs fit
on the screen and none of them overflow it.

Then you make #main overflow: auto or overflow: scroll and put all the
contents in there. Then #main behaves a bit like a frame.

dorayme has an example somewhere because this came up quite recently.
NB I obtain the same result both with and without
body {position: relative}

The only difference is that with body {position: relative} an about
10pix border appears on top of the header (why ? and why do I always
have a similar border at the right of sub ?)
On sub because you gave it a right margin of 1%.

Body has a margin from the default stylesheet of about 8px. Once you
make it position: relative it becomes the container for #main, so you
will see #main move down and right by about 8px. Without position:
relative on body, #main's container is the viewport.

#myhead should not be affected by position: relative on body since it is
position: fixed and therefore its container is always the viewport.
OK, I understand that. I confused "margin" (which is outside the box)
and "padding" (which is inside it). With padding I can get rid of the
border on the right of sub ... still there is a thinner border if I use
body {position: relative} which goes away if I do
body {position: relative; margin:0 }
I think you must be talking about making #myhead etc. all position:
absolute now. Yes if they're position absolute, they're positioned
relative to body's padding box if body is not position: static.

So they all move towards the centre of the page by 8px: body's margins.

If you don't like it, set body { margin: 0; padding: 0 }.
Where did it inherit a non-zero margin I did not set ?
Body got it from the UA default stylesheet.
Anyhow, I still stand with my original question
And I stand by my original answer :)

I'll see if I can find that example dorayme made.

Here it is: http://dorayme.890m.com/alt/pseudoFrames.html

And here is the thread:

http://groups.google.co.uk/group/com...c77fccda0f7101
Oct 15 '08 #4
In article <sl************ *********@bowse r.marioworld>,
Ben C <sp******@spam. eggswrote:
I'll see if I can find that example dorayme made.

Here it is: http://dorayme.890m.com/alt/pseudoFrames.html
It should be added that this is really your idea and I merely made the
doc...

and posted

<http://dorayme.890m.co m/alt/positionFixed.h tml>

at about the same time to suggest there was a way to achieve that
thread's OP's aim. But there was an issue about jerkiness. Spartinicus
mentioned this jerkiness years ago, I remember.
And here is the thread:

http://groups.google.co.uk/group/com...stylesheets/br
owse_thread/thread/1c317bafa379c09 1/eac77fccda0f710 1#eac77fccda0f7 101
--
dorayme
Oct 16 '08 #5
On Wed, 15 Oct 2008, Ben C wrote:
>>On 2008-10-14, LC wrote:
>Did you mean perhaps instead "use position: FIXED for everything ...

No I did mean position: absolute.
To make it work with position: absolute you make sure all three divs
fit on the screen and none of them overflow it.
I do not understand exactly what you mean. myhead is anchored at top=0,
left=0, width=100, so by definition fits on the screen. sub is anchored
to right=0 and vertically to top, so it also always fits on the screen.
These two are the components which shall not move.

main instead has an undefined height, which typically is longer than the
screen (otherwise I won't need a scrollbar :-))

Now I have 2 cases working with combinations absolute/absolute/fixed and
fixed/fixed/fixed overflow=auto. absolute/absolute/absolute instead
does not work (everything scrolls). I will work out self-contained
examples later today and post the urls there.
I'll see if I can find that example dorayme made.
Here it is: http://dorayme.890m.com/alt/pseudoFrames.html
I saw it and also http://dorayme.890m.com/alt/positionFixed.html

Both work for me (once I've resized my browser window ... with the
default full screen height the entire page is visible and no scrolling
is necessary)
And here is the thread:
I see in such thread you comment "But quite jerky in Firefox because
their implementation of position: fixed is crap."

Well, I'm testing everything under firefox. Are you saying that this is
not representative of the behaviour other users may notice ?

--
----------------------------------------------------------------------
no****@mi.iasf. cnr.it is a newsreading account used by more persons to
avoid unwanted spam. Any mail returning to this address will be rejected.
Users can disclose their e-mail address in the article if they wish so.
Oct 16 '08 #6
LC's No-Spam Newsreading account wrote:
I have happily lived for 15 years (our first web server started in 1993)
without CSS, but I now decided to learn and experiment with it.

My personal preference has always been that the width of items in my
pages are USUALLY not set in fixed values, but as percentages (e.g. for
frames in frameset, or tables w.r.t the display area), since a priori I
cannot know what screen or window size users will use, and the browser
window can be arbitrarily resized in the horizontal direction, ideally
with no horizontal scrollbar unless really needed. Similarly I do not
use absolute font names or sizes (otherwise said I care for content and
logical layout but not for a precise look being the same everywhere).

Some of my colleagues however have written pages which define pages with
fixed fonts, or a fixed width. Unfortunately if the window is not wide
enough, one has to scroll horizontally.

I hoped one could cure that, and apparently one can do something on a
simple (single column) document with something like :

body {width: 20cm; max-width: 80%;}

(on a larger window the document has a fixed size and the part at the
right is unused, as now; if one resizes the window smaller, however the
document is always contained in the window, and no horizontal scroll bar
is required)

I then tried to develop a frameless frame-like appearance.

body {width: 100%; }
#myhead {position: fixed ; top: 0 ; left: 0; right:0; bottom: auto;
width: 100%; height: 4.5em; background: white; z-index: 1}
#main {position: absolute: top: 4.5em ; left: auto; right: auto;
bottom: auto; height: auto; width: 76%; margin: 2%; z-index: 0}
#sub {position: fixed ; top: 4.5em ; right: 0; bottom: 0 ; left: auto;
width: 18%; background: aqua; margin: 0 1%; zindex: 1}
^^^^
See NOTE below
>
Using appropriate DIVs there is a title area on the top, occupying the
entire width (myhead), a navigation area on the right (sub), and the
document goes in the main area (with vertical scroll bars scrolling it
only). I can resize the window horizontally and everything remains visible.

<div id=myhead>space for a fixed page title</div<div id=main ... the
bulk of the page </div>
<div id=sub ... the navigation area </div>

+---------------------------------+
| myhead |
+---------------------------------+
| | *|
| main | sub *|
| | *|
+---------------------------------+
So far so good (except that the "sub" area is not aligned flush right,
but has some 10 pixels to its right. Why ?). That's how *I* like it.
Because you gave #sub a 1% margin on the left and right sides.

http://www.w3.org/TR/CSS21/box.html#propdef-margin

margin: 0 1% means
margin-top: 0; margin-right: 1%; margin-bottom: 0; margin-left: 1%;

shortcut property is clockwise from top, 'margin: top right bottom left'

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Oct 16 '08 #7
On Thu, 16 Oct 2008, LC wrote:
I will work out self-contained examples later today and post the urls
there.
OK. I have done the bare-bone examples, with style statements inside
instead than in external css files.

I stand partially corrected, because there was a typo in all my previous
exercises (including the CSS I put in my post, somebody sharp-sighted
should have noticed them ...). The typo was that in the definition of
"main" I wrote e.g. position: absolute: top: 0; ... i.e. there is a
COLON instead of SEMICOLON after absolute or fixed

.... I wonder how the browser interpreted it ...
.... and whether there is a tool (like the javascript console) where
one could spot such errors

Anyhow these are the examples :

typo work
http://sax.iasf-milano.inaf.it/~luci...Css/testA.html Y Y
http://sax.iasf-milano.inaf.it/~luci...testAcorr.html N N
http://sax.iasf-milano.inaf.it/~luci...Css/testB.html Y Y
http://sax.iasf-milano.inaf.it/~luci...testBcorr.html N N
http://sax.iasf-milano.inaf.it/~luci...Css/testC.html Y N
http://sax.iasf-milano.inaf.it/~luci...testCcorr.html N N
http://sax.iasf-milano.inaf.it/~luci...Css/testD.html N N
http://sax.iasf-milano.inaf.it/~luci...Css/testE.html N Y
http://sax.iasf-milano.inaf.it/~luci.../testEsin.html N Y
http://sax.iasf-milano.inaf.it/~luci.../testEvar.html N but

Examples A and B are the ones I was referring to in my earlier posts.
They worked with the behaviour I wanted (header and side area fixed,
main area scrolling) ... but unfortunately were affected by typos. So
did they work by chance ?

Example C should be the one conforming to Ben C's suggestion (everything
absolute) ... not working but affected by typo.

A,B and C "corr" have the typo corrected (I put a semicolon where it
should) ... as a consequence NONE OF THEM WORK ANY MORE

D and E should be equivalent to dorayme's pseudoFrames.ht ml and
positionFixed.h tml. Only the second one works with the behaviour I want.

I presume the effect of the typo on A,B was to render them equivalent
to E.

So I could say that I have a working starting point (header and
navigation area fixed on the screen, main area scrollable).

They work under "my" phylosophy (page uses entire screen width).

Now I'd like to make them work under "my colleagues'" phylosophy,
modified. I.e. the document should have a default absolute width (in cm
or pixels). If the user's screen is wider, the document shall be
contained in the default width and the part on the right be unused.
However if the screen is or is resized smaller one should use the entire
screen, with NO NEED of HORIZONTAL scrollbars.

This is demonstrated on a "single frame" document by testEsin.html (note
the unused area on the right).

testEvar.html is an attempt of doing the same on a pseudoframed document
but as you can see the effect I want to achieve applies only to "main"
and not to the entire document ...

By the way, I'm pretty sure I could achieve what I want with a real
frameset. I used framed documents with no restrictions, but I see that
somebody prefers to avoid them (has this preference a real jsutification
?)

--
----------------------------------------------------------------------
no****@mi.iasf. cnr.it is a newsreading account used by more persons to
avoid unwanted spam. Any mail returning to this address will be rejected.
Users can disclose their e-mail address in the article if they wish so.
Oct 16 '08 #8
On 2008-10-16, LC's No-Spam Newsreading account <no****@mi.iasf .cnr.itwrote:
On Wed, 15 Oct 2008, Ben C wrote:
>>>On 2008-10-14, LC wrote:
>>Did you mean perhaps instead "use position: FIXED for everything ...

No I did mean position: absolute.
>To make it work with position: absolute you make sure all three divs
fit on the screen and none of them overflow it.

I do not understand exactly what you mean. myhead is anchored at top=0,
left=0, width=100, so by definition fits on the screen. sub is anchored
to right=0 and vertically to top, so it also always fits on the screen.
These two are the components which shall not move.

main instead has an undefined height, which typically is longer than the
screen (otherwise I won't need a scrollbar :-))
Give main a defined height (probably by setting top and bottom and
leaving height as auto) but make it overflow: auto.

That way the user scrolls main to get to the contents, not the viewport.
The viewport never scrolls. That keeps myhead and sub from moving.
Now I have 2 cases working with combinations absolute/absolute/fixed and
fixed/fixed/fixed overflow=auto. absolute/absolute/absolute instead
does not work (everything scrolls). I will work out self-contained
examples later today and post the urls there.
>I'll see if I can find that example dorayme made.
Here it is: http://dorayme.890m.com/alt/pseudoFrames.html

I saw it and also http://dorayme.890m.com/alt/positionFixed.html

Both work for me (once I've resized my browser window ... with the
default full screen height the entire page is visible and no scrolling
is necessary)
The first one (http://dorayme.890m.com/alt/pseudoFrames.html) is what
I'm talking about. The reason I suggest not using fixed is because you
want to set max-width or min-width (I can't remember which) on the
container for all these elements.

You can't do that if they're position: fixed, because in that case their
container is the viewport, and only the user can set the dimensions of
the viewport.

I think that was your original problem.
>And here is the thread:

I see in such thread you comment "But quite jerky in Firefox because
their implementation of position: fixed is crap."

Well, I'm testing everything under firefox. Are you saying that this is
not representative of the behaviour other users may notice ?
You may just have a fast computer. I still get visible jerkiness in FF3
on GNU/Linux.
Oct 16 '08 #9
In article
<al************ *************** ******@cbfrvqba .ynzoengr.vans. vg>,
LC's No-Spam Newsreading account <no****@mi.iasf .cnr.itwrote:
By the way, I'm pretty sure I could achieve what I want with a real
frameset. I used framed documents with no restrictions, but I see that
somebody prefers to avoid them (has this preference a real jsutification
?)
"somebody prefers"!

Talk about understatement! You can get lynched by "nearly everybody"
around these parts for using frames. <g>

Btw, yes, it has real justification.

--
dorayme
Oct 16 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
1926
by: Michael Winter | last post by:
Is it possible to test for CSS level 2 support, preferably using just CSS2? For example, the following could alert the user that their browser doesn't support CSS1 or 2. Is there an equivalent for level 2 only? Many thanks, Mike
14
2612
by: Michael Bulatovich | last post by:
Has anyone got a good link to a concise discussion of where things now stand regarding these two? e.g. What browsers are compliant with one or the other? What the adoption rate is of these browsers? How are site developers dealing with what appears to me to be the
1
5371
by: Wilhelm Kutting | last post by:
Hi i like to make a complex layout with css. All the content is inside a container div. I like to get the following sequence without the css-layout: logo title mainnav content i can only get the results when i use negative positioning.
2
1559
by: Maitre Bart | last post by:
What I want to perform is calling a member function of container 1 (CRunner), using as argument the value of a container 2 (CNames). The purpose is to transfer values from C2 into C1 using a specific C1 member function. Both containers contains the same number of elements (or at least, C1 is larger than C2). As suggested by S. Meyers (and others), I would like to use an STL algorithm instead of a custom loop. Let say I have the...
3
2637
by: jignesh shah | last post by:
Hi all, Is there a way to recover a single container if its been corrupted or mark bad without restoring whole tablespace? environment: db28.1/aix5.1/tsm/rs-6000. Regards Jignesh
2
2094
by: Xah Lee | last post by:
what's new in CSS2? http://xahlee.org/js/css2.html Xah xah@xahlee.org ∑ http://xahlee.org/
3
2457
by: gvdmoort | last post by:
Hello, I've a problem with a table whose the witdh is 100%. With Firefox, it correctly fits the width of the parent container, no more. But with IExplorer, the witdth seems to be equal to the width of the body, so it enlarges the parent-container. See http://www.k1ka.be/rubrique.php3?id_rubrique=1
1
1680
by: Sjef | last post by:
I am trying to understand the deeper meanings of containers. One would say: everything inside the container div will stay inside, but apparently that's not true. My test code is below. When I run this in IE everything seems fine, when I run it in Firefox the text runs out of the right box and the right box runs out of the overall container. I don't understand the reason for this??? I would like to make both columns the same height while...
2
1226
by: adventurer | last post by:
Hello everyone, I am not totaly new to CSS, but I am new to understanding all that css2 has to offer. I am curious about the float and how it works if anyone knows. If I make a div container, and then within that div container make several div containers that all float left, is it possible to stack them left to right across the sceen..however many I need? All with auto adjusting to screen size! lol tough..I know..been trying a while now. ...
0
9718
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9596
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10364
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10109
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9186
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7649
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5678
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3849
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.