此问题已在此处有答案:
How do I get the bullets of an unordered list to center with the text?(5个答案)
3天前关闭。
我遇到了无序列表项目之间稍微偏离中心的问题。我是新手。有人能建议吗?
我认为使用中心对齐会导致所有文本都是对称的,但每个列表项都有点歪斜。我也尝试使用list-style-position:里面;按照其他答案,但这似乎没有帮助。
.list {
text-align: center;
padding-left: 0;
list-style-position: inside;
font-style: normal;
font-family: cursive;
color: teal;
display: block;
border-spacing: 5px;
margin-bottom: 20px;
margin-left: 20px;
margin-right: 20px;
width: 92.35%;
background-color: bisque;
}
<div class="header">
<h1> Birthday Time!</h1>
<div class="list">
<h3> What to bring:</h3>
<ul>
<li> Balloons</li>
<li> Pinata</li>
<li> Crisps</li>
</ul>
</div>
1条答案
按热度按时间8e2ybdfx1#