mhamilton3
Programmer
- Oct 31, 2001
- 129
Hello all,
I have a site that I have set up using CSS (I am new to CSS). I have a left, center, and right div. The site is medifile.congoleum.com. The <div>s are defined below.
My desire is to have a left panel of 185, a right panel of 185, and a middle that floats. I desire to have the middle with a minimum of 430 so I would not expect scroll bars to show up until the site got to 600 pixels wide. What happens to me is the right <div> pushes the middle and then finally sits on top of the left. I'm guessing there is a way around this, but I can not find it. Any suggestions?
I have a site that I have set up using CSS (I am new to CSS). I have a left, center, and right div. The site is medifile.congoleum.com. The <div>s are defined below.
Code:
#leftcontent {
position: absolute;
left:0px;
top:0px;
width:185px;
}
#centercontent {
background:#fff;
top:0px;
height:100%;
margin-left: 184px;
margin-right:184px;
voice-family: "\"}\"";
voice-family: inherit;
margin-left:186px;
margin-right:186px;
}
html>body #centercontent {
margin-left: 186px;
margin-right:186px;
}
#rightcontent {
position: absolute;
right:0px;
top:0px;
width:185px;
background:#fff;
}
My desire is to have a left panel of 185, a right panel of 185, and a middle that floats. I desire to have the middle with a minimum of 430 so I would not expect scroll bars to show up until the site got to 600 pixels wide. What happens to me is the right <div> pushes the middle and then finally sits on top of the left. I'm guessing there is a way around this, but I can not find it. Any suggestions?