本文介绍了显示文字&价格在适当的地方的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
某些文字缺失,并且价格未正确显示在
但其工作正常
.product-view .product-shop .price-box {
margin-top:0;
}
.price-box {
margin:7px 0;
font-family:'Roboto Condensed',sans-serif;
}
@media only screen和(min-width:1224px)
.short-description .std li {
color:#908983;
font-size:14px;
font-weight:normal;
line-height:25px;
}
解决方案
添加 clear:left
到 .price-info
some texts are missing and Prices are not displaying in proper place as here
but its working fine here & i want to display like this.
.product-view .product-shop .price-box {
margin-top: 0;
}
.price-box {
margin: 7px 0;
font-family: 'Roboto Condensed', sans-serif;
}
@media only screen and (min-width: 1224px)
.short-description .std li {
color: #908983;
font-size: 14px;
font-weight: normal;
line-height: 25px;
}
解决方案
That's a floating issue. Add clear: left
to .price-info
这篇关于显示文字&价格在适当的地方的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!