我有一個產品的列表,我想在每個項目的左側用拇指圖標 進行顯示。在圖標圖像中的LI中的響應文字寬度
如何將產品說明顯示在右側,而無需在較小的屏幕上包裝文字 。
HTML
<ul>
<li class="cf">
<span id="customizeImage1" class="product-customize-image"></span>
<div class="product-menu-txt">
<a href="/Product/Customize/769497">Friend Maker - Serves 8-10</a>
($14.99)<br>
6 Donuts<br>
6 Bagel & Cream Cheese - 1 (8oz) tub<br>
An assortment of our most favored varieties.
</div>
</li>
</ul>
CSS
* {
margin:0;
padding:0;
font-family: Tahoma,Sans-Serif;
}
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}
/**
* For IE 6/7 only
* Include this rule to trigger hasLayout and contain floats.
*/
.cf {
*zoom: 1;
}
li {
width: 100%;
list-style-type: none;
padding: 10px 0;
}
.product-customize-image {
width:120px;
height:120px;
background:red;
display:block;
float:left;
margin: 0 10px;
}
.product-menu-txt {
float: left;
width: 50%;
}
使用媒體查詢,對齊文本右邊來處理這 – 2014-11-04 05:42:55
最好的辦法是使用媒體查詢,以便所有的設備呈現適當。 – Subhranshu 2014-11-04 06:39:48