我目前使用materializecss
框架並拉動圖標並將其放在文本旁邊。我需要將中間以上的文本對齊到以上的圖標與CSS,但我目前似乎沒有工作。將材質設計圖標上方的文字對齊(使用materializecss)
<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;
}
然而,文本仍停留於圖標的右側。
這是我最終試圖實現的結果。
是你需要什麼? http://plnkr.co/edit/sUxq40VIxfr2Im3Uq2rm?p=preview – Microsmsm