gpt4 book ai didi

html - 如何在列表项的中心制作文本?

转载 作者:行者123 更新时间:2023-11-28 04:17:44 24 4
gpt4 key购买 nike

这是我的作品。问题是我无法在 ul 元素的中心放置文本。

.fc-list-content {
height: 32px;
margin-top: 10px;
}

.fc-list-content:hover {
background-color: orange;
}

.fc-list-a:hover {
text-decoration: none;
cursor: pointer;
}
<ul class="list-group">
<a class="fc-list-a">
<li class="fc-list-content"><span class="content">ABC 1</span</li>
</a>
<a class="fc-list-a">
<li class="fc-list-content"><span class="content">ABC 2</span</li>
</a>
<a class="fc-list-a">
<li class="fc-list-content"><span class="content">ABC 3</span</li>
</a>
</ul>

最佳答案

您有标记错误,<a>不允许直接在<ul>下.

要使文本居中,只需添加 text-align: centerulli .我也改了list-style-position: inside所以子弹也会居中。

.list-group {
list-style-position: inside;
text-align: center;
padding-left: 0;
}
.fc-list-content {
height: 32px;
margin-top: 10px;
}

.fc-list-content:hover {
background-color: orange;
}

.fc-list-a:hover {
text-decoration: none;
cursor: pointer;
}
<ul class="list-group">
<li class="fc-list-content"><a class="fc-list-a"><span class="content">ABC 1</span></a></li>
<li class="fc-list-content"><a class="fc-list-a"><span class="content">ABC 2</span></a></li>
<li class="fc-list-content"><a class="fc-list-a"><span class="content">ABC 3</span></a></li>
</ul>

关于html - 如何在列表项的中心制作文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42396735/

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