我正在通过 initializr.com 使用响应版本的 html5 样板。我的网站使用自定义徽标,因此我将 .ir 类添加到 h1
.ir {
background-color: transparent;
border: 0;
overflow: hidden;
*text-indent: -9999px;
}
像这样
<h1 class="title ir">h1.title</h1>
文件说_
将 .ir 类添加到您应用图像替换的任何元素。用图像替换元素的内容时,请确保还设置特定的背景图像:url(pathtoimage.png);、宽度和高度,以便显示替换图像。
所以我在代码中添加了这些行
.ir {
background-image: url(http://i.imgur.com/yYnyJ.jpg);
background-size: 100% auto;
width:450px;
height:450px
}
问题是特定的宽度和高度。我无法摆脱它们,但徽标不会以这种方式响应。想法?这是小提琴。http://jsfiddle.net/qeW3e/