【发布时间】:2012-10-23 04:25:03
【问题描述】:
我正在尝试对齐图标/图像旁边的文本,我希望文本或图像垂直对齐,但未应用垂直对齐,它可能与浮动有关
这是一张解释我想要做什么的图片:
这是我目前所拥有的:
---- 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 但它不起作用。
【问题讨论】:
标签: css image css-float vertical-alignment