【发布时间】:2014-09-03 06:55:45
【问题描述】:
我一直在尝试使用我的 Fontastic.me 图标使我的文本居中。
这是我的代码:
HTML:
<html>
<div id="info">
<ul>
<li id="chat"><span class="icon-comment-discussion"></span><p>We offer the best & simplest chat system on the web.</p></li>
</ul>
</div>
</html>
还有我的 CSS:
#chat {
line-height: 72px;
vertical-align: middle;
}
它根本没有对齐,当我更改垂直对齐选项时没有任何变化。我在想也许是因为我的文字在段落标签中;但我想先在这里问。
已解决:我添加了垂直对齐:中间;到:
#chat span {
}
效果很好。
【问题讨论】:
标签: css icons font-awesome fontastic