Thanks for your help guys.
But why won’t Firefox take into account the 230 px width property I set to my left container (or any of the properties for that container)? I see in Firebug that none of the css settings appear, only the initial body and html properties. Do they supersede or something?
This is what Firebug shows for that container:
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, table, th, td {
margin:0;
padding:0;
}
test1.css (line 8)
Inherited from body
html, body {
font-family:arial,verdana,sans-serif;
font-size:14px;
}
test1.css (line 1)
Inherited from html
html, body {
font-family:arial,verdana,sans-serif;
font-size:14px;
Whereas I set the following css
#sidecontainer {
font-family: monospace;
float: left;
width: 230px;
}
PS I see your point Ralph, now the line is the width of the div, I’ll see whether I stick with that, put a background image, or get rid of the line altogether.