Daniel: Ja, natuerlich!

Beitrag lesen

Tach auch,

http://www.glish.com/css/

http://www.bluerobot.com/web/layouts/

http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html

Noch Fragen?

Hmm, das ist schon ziemlich gut. Ich muss sagen, wirklich nicht schlecht.

Das habe ich gesucht: http://bluerobot.com/web/layouts/layout2.html ---> Wirklich gut. Allerdings versteh ich das Style Sheet nicht ganz. Muss ich zugeben. Ich hab mal die Teile kopiert. Vielleicht kann ja jemand einen Gedankenanstoß geben.

...
p {
 font:11px/20px verdana, arial, helvetica, sans-serif;
 margin:0px 0px 16px 0px;
 padding:0px;
 }

#Content>p {margin:0px;}
#Content>p+p {text-indent:30px;}

...

#Header {
margin:50px 0px 10px 0px;
padding:17px 0px 0px 20px;
/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
height:33px; /* 14px + 17px + 2px = 33px */

border-style:solid;
 border-color:black;
 border-width:1px 0px; /* top and bottom borders: 1px; left and right borders: 0px */
 line-height:11px;
 background-color:#eee;

/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity.
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.
IE5/Win incorrectly parses the ""}"" value, prematurely closing the style
declaration. The incorrect IE5/Win value is above, while the correct value is
below. See http://glish.com/css/hacks.asp for details. */

voice-family: ""}"";
voice-family:inherit;
height:14px; /* the correct height */

}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct
length values to user agents that exhibit the parsing error exploited above yet get
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */

body>#Header {height:14px;}

#Content {
 margin:0px 210px 50px 10px;
 padding:10px;
 }

#Menu {
 position:absolute;
...
 line-height:17px;
/* Again, the ugly brilliant hack. */

voice-family: ""}"";
voice-family:inherit;

width:150px;
 }
/* Again, "be nice to Opera 5". */

body>#Menu {width:150px;}