gpt4 book ai didi

html - CSS 箭头 : How can I center a text?

转载 作者:搜寻专家 更新时间:2023-10-31 22:15:51 25 4
gpt4 key购买 nike

请看http://jsfiddle.net/yusaku/NqLuX/1/

我可以仅使用 CSS 来显示箭头,但我永远无法在 TD 中将文本(在本例中为“abc”)居中。做“文本对齐:中心”似乎不可用..有人可以建议我吗? (没关系,位置不是完全居中)

<html>
<body>
<table>
<tr>
<td class="arrow_td">
<span class="name">abc</span>
<div class="arrow"></div>
</td>
</tr>
</table>
</body>
</html>​


td.arrow_td {
width: 200px;
text-align: right;
background-color: black;
color: white;
white-space: nowrap;
}
td span.name {
display: inline-block;
vertical-align: middle;
}
td div.arrow {
display: inline-block;
vertical-align: middle;
width: 0;
line-height: 0%;
border: none;
border-left: 20px solid black;
border-bottom: 20px solid white;
border-top: 20px solid white;
border-image: initial;
}​

最佳答案

给你:http://jsfiddle.net/2uTEs/

我删除了所有不需要的元素,只留下必需的。

关于html - CSS 箭头 : How can I center a text?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9249840/

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