我有一个奇怪的问题。我的div宽度之一不起作用。我的CSS就像
.product_info
{
margin-top:10px;
background:#444;
width:850px;
}
.product_image
{
width:350px;
text-align:center;
float:left;
padding:8px;
border:1px solid #e9e9e9;
background:#fff;
}
.product_details
{
float:left;
width:400px;
margin-left:25px;
font-size:14px;
font-family:"Helvetica";
background:#d71414;
}
我的HTML文件是
<div class="product_info">
<div class="product_image">
</div>
<div class="product_details">
<div class="selection">
<form action="{$path_site}{$indeex_file}" method="post">
Size
{foreach name = feach item = k from = $product_size}
<input type="radio" name="size" value="{$k.product_size}" />{$k.product_size}
{/foreach}
</div>
<div class="selection">
No. of pieces <input type="text" name="quantity">
</div>
<div class="prc">
<span class="WebRupee">Rs.</span> {$product_info->product_cost}.00
</div>
<div class="buy_btn"><input type="submit" value="BUY" /></div>
</form>
</div>
</div>
但正如您在附加图片中看到的那样,我的div
product_info
的宽度不是850px
,错误的是
答案 0 :(得分:24)
尝试
显示:阻止
应该有效
答案 1 :(得分:6)
display: flex
也会更改width
和height
的工作方式。
他们基本上失去了最初的含义,将充当flex-basis
,请参见geddski: The Difference Between Width and Flex Basis
答案 2 :(得分:1)
display: inline-block;
为我工作
示例:
label {
min-width: 90px;
display: inline-block;
}
答案 3 :(得分:0)
我希望你看起来像这样: - http://tinkerbin.com/MU2CUpre
实际上,您在floating
中使用了child div's
而clear
没有使用parent div
。
所以我在{strong>父div 中cleared
parent div
到overflow:hidden;
,{child} cleared
这个子div .product_details
也工作正常。 ....
<强> CSS 强>
.product_info
{
margin-top:10px;
background:#444;
width:850px;
overflow:hidden;
}
.product_details
{
float:left;
width:400px;
margin-left:25px;
font-size:14px;
font-family:"Helvetica";
background:#d71414;
clear:both;
}
答案 4 :(得分:0)
使用clear: both;
属性。
.product_info {clear: both;}
答案 5 :(得分:-1)
您好现在定义您的班级.product_into
overflow:hidden;
的 Live demo 强> 的
就像这样
.product_info{
overflow:hidden;
}
或选项2
定义一个css
<强>的CSS 强>
.clr{
clear:both;
}
将此div
放在最后一行关闭 .product_info
类
<div class="product_info">
<div class="product_image">
</div>
<div class="product_details">
<div class="selection">
<form action="{$path_site}{$indeex_file}" method="post">
Size
{foreach name = feach item = k from = $product_size}
<input type="radio" name="size" value="{$k.product_size}" />{$k.product_size}
{/foreach}
</div>
<div class="selection">
No. of pieces <input type="text" name="quantity">
</div>
<div class="prc">
<span class="WebRupee">Rs.</span> {$product_info->product_cost}.00
</div>
<div class="buy_btn"><input type="submit" value="BUY" /></div>
</form>
</div>
<div class="clr"></div>
</div>
的 Live demo option two 强> 的