I'm converting a table-based layout to CSS. This is my first attempt. So far I've managed to find answers to all my problems by searching and studying, but I haven't come across this.
In IE, this works just as I'd expect it to.
But in Firefox, the boxes that should be contained are overflowing on the right side.
I've set the borders so that I can see what's happening. In IE, they're all contained, but in Firefox, they are wider than they should be.
Any ideas on what I've missed or where I can look would be appreciated.
/Wendy
In IE, this works just as I'd expect it to.
But in Firefox, the boxes that should be contained are overflowing on the right side.
I've set the borders so that I can see what's happening. In IE, they're all contained, but in Firefox, they are wider than they should be.
Code:
* { padding:0; margin:0; }
body,td,tr,select, input {
font-family:Arial;
font-size: 11px;
color: #392643;
margin: 0px;
line-height:14px;
/* center main_div on the page in IE : */
text-align : center;
}
#side {
border: medium solid #66FF33;
position: absolute;
top: 175px;
bottom: 195px;
left: 0px;
right: 615px;
width: 210px;
height: 450px;
}
#sidenotice {
border: medium solid #66FF33;
position: normal;
left: 0px;
width: 100%;
height: 50px;
padding-left: 50px;
}
#sidemenutags {
border: medium solid #66FF33;
position: normal;
left: 0px;
width: 100%;
height: 170px;
padding-left: 1px;
padding-top: 5px;
}
#sidemenutext {
border: medium solid #66FF33;
position: normal;
left: 0px;
width: 100%;
height: 200px;
padding-left: 35px;
}
Any ideas on what I've missed or where I can look would be appreciated.
/Wendy