content column

All templates are XHTML 1.0 and CSS2/ tableless.

2 columns / menu and content dynamic
2 column layout grid. The navigation column and content column are dynamic and adjust themselves to the browser window.
This layout also works with an absolute height TEMPLATE 100% height
more nice and free css templates

html {
padding:0px;
margin:0px;
}
body {
background-color: #e1ddd9;
font-size: 12px;
font-family: Verdana, Arial, SunSans-Regular, Sans-Serif;
color:#564b47;
padding:0px 20px;
margin:0px;
}
#content {
float: left;
width: 75%;
background-color: #fff;
margin:0px 0px 50px 0px;
overflow: auto;
}

This is, after all, one correct way to eliminate the space betweensucceeding elements. Navigator 4.x, however, will display theelements with the usual blank line between them, as you can see inFigure 7-26. This is because it's adding thezero values to its own default margins.

Figure 7-26

Figure 7-26. Navigator 4.x and margins

If you want to overcome this space, you can always use negativemargins. Here's one possible declaration:

One limitation under CSS1 is that there isn't a way todistinguish between different types of INPUTelements. If you need to have checkboxes be a different color thanradio buttons, then you'll need to assign them classes so thatyou get the desired result (seen in Figure 6-13):

INPUT.radio {color: #666666;}INPUT.check {color: #CCCCCC;}<INPUT TYPE="radio" NAME="r2" VALUE="A" CLASS="radio">