我有這個標記:響應CSS背景屬性
<ol class="carousel-indicators">
<li data-target="#ShowCarousel-03" data-slide-to="0" class="active">
<h4>Title</h4><br/><h5>Text</h5><br/><span>+</span>
</li>
<li data-target="#ShowCarousel-03" data-slide-to="1">
<h4>Title</h4><br/><h5>Text</h5><br/><span>+</span>
</li>
<li data-target="#ShowCarousel-03" data-slide-to="2">
<h4>Title</h4><br/><h5>Test</h5><br/><span>+</span>
</li>
<li data-target="#ShowCarousel-03" data-slide-to="3">
<h4>Title</h4><br/><h5>Text</h5><br/><span>+</span>
</li>
這個CSS:
.carousel-indicators li{
display:block;
float:left;
background: url(images/triangle.png) no-repeat;
width:320px;
height:176px;
cursor: pointer;
text-align:center;
}
和我的標記的div容器的寬度設定爲100%
在我的實際分辨率(1366px寬)上li元素對齊好,但是當我調整我的瀏覽器的元素不對齊。
我正在使用twitter引導框架。
我的問題是如何在分辨率較低時使這些元素縮放?
謝謝!
發佈一個jsFiddle,並告訴我們你期望元素在較小的尺寸上做什麼。 – Charlie 2013-04-05 01:11:12
我想這是您之前對此問題的更新:http://stackoverflow.com/questions/15822493/responsive-images-inside-a-full-width-div – 2013-04-05 01:23:18