我正在尝试将文本与图标/图像对齐,我希望文本或图像垂直对齐,但未应用垂直对齐,它可能与浮动有关
这是一张解释我想要做什么的图片:
这是我到目前为止所拥有的:
---- HTML ---
<ul class="toolboxItems">
<li>
<div class="image">
<img src="someImage.png">
</div>
<div class="label">
<label>Lorem ipsum dolor sit amet....</label>
</div>
<li>
<li>
/* more of the same .... */
</li>
<ul>
---- CSS ----
ul.toolboxItems li {margin-bottom:10px;}
.image {float:left; width:30px;}
.label {float:left; width:150px; vertical-align:middle;}
我尝试使用 display:table / table-cell 但它不起作用。