我正在尝试创建此布局。
我希望可以通过 IE 8 及更高版本以及其他标准 Web 浏览器访问该布局。所以我不想使用 CSS3,如果可能的话。
到目前为止,我得到了这个(它没有页眉和页脚,因为它们是原始添加的):
HTML:
<div class="right">
<div class="left">
<div class="container clearfix">
This is an example text<br />
This is an example text<br />
This is an example text<br />
This is an example text<br />
This is an example text<br />
</div>
</div>
</div>
CSS:
.right {background: url('images/bgr.jpg') no-repeat scroll right top #FFFFFF;}
.left {background: url('images/bgl.jpg') no-repeat scroll left top transparent;}
.container {width: 960px; margin: 0 auto; position: relative; text-align: left; border: 1px solid red;}
.clearfix:after {clear: both; content: " "; display: block; font-size: 0; height: 0; visibility: hidden;}
问题是,当我以低于 (pic1Width + pic2Width + contentWidth) 的分辨率打开它时,图片将覆盖内容使其消失。我也无法在图片 1 和 2 的左侧和右侧添加流体空间。
感谢您的任何提示!