使用 CSS 无序列表中的文本缩进
我有一个无序的 HTML 列表,并使用 CSS 来设置所有内容的样式。当文本有多行时,它从项目符号点之前开始。有没有办法让它在要点位置之后开始?
I have an unordered HTML list and am using CSS to style everything. When the text has multiple lines, it starts before the bullet point. Is there a way to make it start after the bullet point position?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您想在
JsFiddle
You want to use
list-style-position:outside
on your<ul>
JsFiddle
请尝试使用此属性
或在其中之一内使用。这应该可以解决问题。
Please try and use this property
or inside one or the other. This should fix the problem.
当然,很容易。在您的
中执行以下操作:
Sure, easy enough. Within your
<li>
do this:这是最简洁的 CSS,使用简写属性语法:
This is the most condensed CSS, using the shorthand property syntax: