【发布时间】:2016-06-11 06:20:48
【问题描述】:
我目前正在使用materializecss 框架并拉入一个图标并将其放在文本旁边。我需要将图标中间上方中的文本与css对齐,但我目前拥有的似乎不起作用。
<table class="centered">
<thead>
<th class="align-text"><i class="material-icons small">timer</i>Time</th>
<th>Another header</th>
<th>And another header</th>
</thead>
</table>
我现在的css 文件:
.align-text {
display: inline-block;
text-align: center;
vertical-align: top;
}
但是,文本仍然停留在图标的右侧。
这是我最终想要达到的结果。
【问题讨论】:
标签: html css material-design materialize