I am experimenting for the first time with css layouts and my experience with CSS is very basic. What I want to achieve is a 2 column layout: left panel and content.
I have found this:
#leftcontent
{
position: absolute;
left: 10px;
top: 10px;
width: 170px;
border: 1px solid #C0C0C0;
padding: 2px;
}
#centercontent
{
position: absolute;
margin-left: 181px;
border:1px solid #C0C0C0;
top: 10px;
//fix IE5 bug
voice-family: ""}"";
voice-family: inherit;
margin-left: 181px;
}
这在Firefox中显示得很好,但在IE8中,#leftcontent
的长度似乎超出了屏幕右侧,我该怎么解决?
这可能是一个很简单的修复,但我已经尝试过并寻找了解决方法,但这似乎应该有效。我感谢任何帮助。