我在网上商店工作,我希望产品中包含产品,我希望它们向左浮动,所以当我添加产品时,它会与剩下的产品一起漂浮。
问题
当我添加一个浮点数时:向左堆叠而不是向左浮动,我不明白为什么?
示例
CODE:
.product_gallery {
margin: 0 auto;
width: 1000px;
list-style: none;
float: right;
position: relative;
}
.product_gallery li {
float: right;
width: 300px;
margin-right: 50;
border: 1px solid #999;
}
.product_gallery li img {
width: 300px;
height: 200px;
float: right;
}
.product_description {
position: absolute;
width: 300px;
height: 200px;
background: rgba(0, 0, 0, 0.6);
opacity: 0;
transition: 0.5s ease-in;
}
.product_gallery li:hover .product_description {
opacity: 0.7;
}
.product_description p {
padding: 10px;
color: #fff;
font-size: 18px;
}
.product_information {
height: 40px;
background: blue;
width: 100%;
float: left;
}
.product_information h4 {
float: left;
color: #fff;
width: 70%;
margin: 10px;
}
.product_information span {
float: right;
color: #fff;
margin: 5px;
font-size: 20px;
}
.buy_now {
background: blue;
color: #fff;
width: 85px;
font-size: 14px;
font-weight: bold;
text-align: center;
text-decoration: none;
float: right;
height: 18px;
}

<ul class="product_gallery">
<li>
<img src="images/test.png">
<div class="product_information">
<h4>AWP ASIIMOV</h4>
<span>230:-</span>
</div>
<div class="product_description">
<p>Awp asiimov är ett fint skin om man gillar att spela awp :)</p>
<a href="#" class="buy_now">BUY NOW</a>
</div>
</li>
</ul>
&#13;
答案 0 :(得分:0)
如果我真的了解你,你希望你的div是并排的。现在不是,因为第一个div有width: 100%
,所以第二个div进入下一行。
将其宽度减小到可以包含div width: 300px
的一行中的值。