我试图将我的复选框全部排成一排。由于某种原因,它们位于一列中。
我需要帮助将复选框排列在一行而不是一列中。
.lowerToppings
{
display: flex;
justify-content: space-around;
}
.LowerToppingsCheckBoxes{
display: inline-block;
display: -moz-inline-box;
*display: inline;
zoom: 2;
width: 10%;
text-align: center;
}
<div class="lowerToppings">
<img src="olivee.jpg" width="100" height="100">
<img src="onion.jpg" width="100" height="100">
<img src="bellpepper.jpg" width="100" height="100">
</div>
<br></br>
<div class="LowerToppingsCheckBoxes">
<div><input type="checkbox" id="cheese" name="toppings" value="cheese"></div>
<div><input type="checkbox" id="pepperoni" name="toppings" value="pepperoni"></div>
<div><input type="checkbox" id="mushroom" name="toppings" value="mushroom"></div>
<div><input type="checkbox" id="pepper" name="toppings" value="pepper"></div>
<div><input type="checkbox" id="basil" name="toppings" value="basil"></div>
</div>
慕无忌1623718
慕村225694
繁星淼淼
相关分类