为什么不显示整个原始图片?
<div class="test"></div>
.test {
background: url("http://i27.tinypic.com/28ktoh.jpg") no-repeat;
}
问题是没有显示任何东西,如果你在div中输入一些东西,它会显示一点点的图像。我希望它包括完整的图片。
答案 0 :(得分:1)
您需要指定height
.test {
background: url("http://i27.tinypic.com/28ktoh.jpg") no-repeat;
overflow:auto;
height:500px;
}
答案 1 :(得分:0)
设置div
的高度。 div
不会高于你所说的或高于它所需要的值。