我希望我的p
文本下方有一条跨越文本宽度的虚线,我也希望p
水平居中。
文本永远不会超过一行,但该行的长度会有所不同(如果它完全固定,我可以很容易地解决这个问题)。
我无法完全弄清楚解决方案。我有以下结构:
<div class="container">
<div class="content">
<p>This is the title</p>
</div>
</div>
在我的 CSS 中,我有这样的东西:
.container {
width: 650px;
height: 100px;
}
.content {
text-align: center;
text-transform: uppercase;
font-size: 26px;
color: #4D4D4D;
}
p {
border-bottom: #808080;
border-bottom-width: thin;
border-bottom-style: dotted;
}