gpt4 book ai didi

html - 对齐 Material 设计图标上方的文本(使用 materializecss)

转载 作者:行者123 更新时间:2023-11-28 06:19:43 25 4
gpt4 key购买 nike

我目前正在使用 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;
}

但是,文本仍然位于图标的右侧。

这是我最终要达到的结果。

enter image description here

最佳答案

已更新:这是您需要的东西^_^ DEMO

<!DOCTYPE html>
<html>

<head>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<style>
th {
display: inline-block;
}
.align-text {
display: inline-block;
text-align: center;
vertical-align: top;
}
span {
display: block;
}
</style>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>

<body>

<table class="centered">
<thead>
<th class="align-text"><span>Time</span><i class="material-icons small">timer</i>
</th>
<th class="align-text"><span>Time</span><i class="material-icons small">timer</i>
</th>
<th class="align-text"><span>Time</span><i class="material-icons small">timer</i>
</th>
</thead>
</table>

<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>

</html>

关于html - 对齐 Material 设计图标上方的文本(使用 materializecss),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35678753/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com