我有一个用HTML创建的列表,但是如果不使用<br>
,我就不能让<li>
标记中的句子换行,那么我该如何为列表换行呢?
下面是HTML代码:
图像代码:https://imgur.com/undefined
OBS:在我设置了<ul>
标签的宽度后,它将我的内容固定在左侧,而不是页面的中心位置
.container h1 {
margin: 50px;
text-align: center;
font-size: 2em;
font-weight: bold;
color: white;
}
.container h2 {
margin: 50px;
text-align: center;
font-size: 2em;
font-weight: bold;
color: #0047FF;
text-decoration: underline;
}
.container ul {
display: block;
margin: 50px;
text-align: center;
max-width: 35%;
font-size: 1.5em;
color: white;
}
ul li {
list-style: inside;
margin-bottom: 2em;
}
<div class="container">
<h1>FREQUENTLY ASKED QUESTIONS</h1>
<ul>
<li>Learn to plan and set your goals so you get more done in less time.</li>
<li>
Discover the #1 way to create to-do lists to dramatically improve your daily performance and productivity.
</li>
</ul>
</div>
我尝试使用<br>
标记进行行跳转,以便文本向下移动一行,但是我希望列表中的所有行都能在所有<li>
标记中换行
2条答案
按热度按时间4smxwvx51#
您可以在每个项目符号之间添加空格,例如
但是,您还缺少对列表项的
<ul>
环绕:jdgnovmf2#
您也可以使用自动换行
它看起来像