这可能是 html 标记
<header>
<span> <!-- background image here --> </span>
<hgroup>
<h1 class="testing">CSS3 and Compass Documentation</h1>
<h2>here I am going to document my compass and CSS3 learning</h2>
</hgroup>
</header>
这将是我的 css 的集市:
header span {
background: url(banner.gif) center 0 no-repeat;
background-size: 100% auto;
display: block;
height: 170px; /* maybe this is where it needs changing*/
width: 100%;
}
一旦您开始缩小浏览器窗口(例如 iphone 尺寸),问题就开始了。图像缩小(如我所愿)但高度仍然170px
hgroup
在图像和内容之间留下更大的差距
我曾尝试使用height: 100%
,但这根本不起作用(至少在这种情况下)。
如果您需要演示http://jsfiddle.net/Jcp6H/