使用 CSS 无序列表中的文本缩进

发布于 2024-11-02 11:18:56 字数 148 浏览 14 评论 0原文

我有一个无序的 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?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

残花月 2024-11-09 11:18:56

您想在

JsFiddle

You want to use list-style-position:outside on your <ul>

JsFiddle

天邊彩虹 2024-11-09 11:18:56

请尝试使用此属性

li {
    list-style-position:outside;
} 

或在其中之一内使用。这应该可以解决问题。

Please try and use this property

li {
    list-style-position:outside;
} 

or inside one or the other. This should fix the problem.

·深蓝 2024-11-09 11:18:56

当然,很容易。在您的

  • 中执行以下操作:
  • <li>
      <div>Schnelles Importieren von Images As Planes</div> 
    </li>
    

    Sure, easy enough. Within your <li> do this:

    <li>
      <div>Schnelles Importieren von Images As Planes</div> 
    </li>
    
    愁杀 2024-11-09 11:18:56

    这是最简洁的 CSS,使用简写属性语法:

     ul {
        list-style: disk outside;
     }
    

    This is the most condensed CSS, using the shorthand property syntax:

     ul {
        list-style: disk outside;
     }
    
    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文