不确定问题是什么。它在Dreamweaver中看起来是正确的,但是当我在Firefox或IE(最新版本)中预览时,它显示广告图像的宽度非常小。
我正在尝试使用height:auto设置宽度为%,以便它随页面调整大小。但那并没有发生。它保持相同的大小。
这是CSS:
#ad2 {
text-align: center;
clear: both;
background-color: #5C7689;
background-image: url(images/bg3%20top2.png);
background-repeat: repeat-x;
overflow: hidden;
width: 100%;
}
#ad2 img {
margin-bottom: 0px;
margin-top: 20px;
width: 60%;
height: auto;
}
这是HTML:
<div id="ad2"><img src="images/blank ad.jpg" /></div>