我想为我的营销网站制作一个 3 列布局,顶部横幅中有图像。
我想要一个具有固定中心的液体左侧/右侧。理想情况下,html 应如下所示:
<div id="pixelLeft"> </div>
<div id="bannerCenter">
<img src="images/mybanner.png" />
</div>
<div id="pixelRight"> </div>
<style>
#pixelLeft { background: url(../../images/pixel_left_fixed.png) 0 0 repeat-x; }
#pixelRight { background: url(../../images/pixel_right_fixed.png) 0 0 repeat-x; }
#bannerCenter { /* something here to make fixed width of 1550px */ }
</style>
左/右像素侧的图像为 1px x 460px。图片 mybanner.png 为 1550 像素 x 460 像素。
提前致谢!(特别是如果它适用于所有浏览器!)