1. 排版
  2. 列表样式类型

Quick reference

Class
Properties
list-nonelist-style-type: none;
list-disclist-style-type: disc;
list-decimallist-style-type: decimal;

基础用法

设置列表样式类型

要创建项目符号列表或数字列表,请使用 list-disclist-decimal 实用程序。

list-disc
  • Now this is a story all about how, my life got flipped-turned upside down
  • And I'd like to take a minute just sit right there
  • I'll tell you how I became the prince of a town called Bel-Air
list-decimal
  • Now this is a story all about how, my life got flipped-turned upside down
  • And I'd like to take a minute just sit right there
  • I'll tell you how I became the prince of a town called Bel-Air
list-none
  • Now this is a story all about how, my life got flipped-turned upside down
  • And I'd like to take a minute just sit right there
  • I'll tell you how I became the prince of a town called Bel-Air
<ul class="list-disc">
  <li>Now this is a story all about how, my life got flipped-turned upside down</li>
  <!-- ... -->
</ul>

<ol class="list-decimal">
  <li>Now this is a story all about how, my life got flipped-turned upside down</li>
  <!-- ... -->
</ol>

<ul class="list-none">
  <li>Now this is a story all about how, my life got flipped-turned upside down</li>
  <!-- ... -->
</ul>

条件应用

悬停、聚焦和其他状态

Tailwind 允许您使用变体修饰符有条件地在不同状态下应用实用程序类。例如,使用 hover:list-disc 来仅 在 hover应用 list-disc.

<ul class="list-none hover:list-disc">
  <!-- ... -->
</ul>

详细了解, 请参考 Hover, Focus, & Other States 文档.

断点和媒体查询

您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、首选减少运动等。例如, 使用 md:list-disc 来应用 list-disc 程序,适用于中等屏幕尺寸及以上。

<ul class="list-none md:list-disc">
  <!-- ... -->
</ul>

进一步了解,请参考 响应式设计, 暗黑模式 媒体查询.


使用自定义值

定制你的主题

默认情况下,Tailwind 为最常见的列表样式类型提供了三种实用程序。您可以通过编辑 Tailwind 配置的 theme.listStyleType 部分来更改、添加或删除这些实用程序。

tailwind.config.js
module.exports = {
  theme: {
    listStyleType: {
      none: 'none',
      disc: 'disc',
      decimal: 'decimal',
      square: 'square',
      roman: 'upper-roman',
    }
  }
}

theme customization 文档中了解有关自定义默认主题的更多信息。

任意值

如果您需要使用一次性的 list-style-type值,而该值没有必要包含在主题中,请使用方括号动态生成属性,使用任意值。

<ul class="list-[upper-roman]">
  <!-- ... -->
</ul>

进一步了解,请参考 任意值 文档.