list-style-position
试试看
语法
css
/* Keyword values */
list-style-position: inside;
list-style-position: outside;
/* Global values */
list-style-position: inherit;
list-style-position: initial;
list-style-position: revert;
list-style-position: revert-layer;
list-style-position: unset;
list-style-position
属性指定为下面列出的关键字值之一。
值
inside
-
::marker
是列表项内容中的第一个元素。 outside
-
::marker
在主块框之外。这是list-style
的默认值。
描述
正式定义
正式语法
list-style-position =
inside |
outside
示例
设置列表项位置
HTML
html
<ul class="inside">
List 1
<li>List Item 1-1</li>
<li>List Item 1-2</li>
<li>List Item 1-3</li>
<li>List Item 1-4</li>
</ul>
<ul class="outside">
List 2
<li>List Item 2-1</li>
<li>List Item 2-2</li>
<li>List Item 2-3</li>
<li>List Item 2-4</li>
</ul>
<ul class="inside-img">
List 3
<li>List Item 3-1</li>
<li>List Item 3-2</li>
<li>List Item 3-3</li>
<li>List Item 3-4</li>
</ul>
CSS
css
.inside {
list-style-position: inside;
list-style-type: square;
}
.outside {
list-style-position: outside;
list-style-type: circle;
}
.inside-img {
list-style-position: inside;
list-style-image: url("starsolid.gif");
}
结果
规范
规范 |
---|
CSS 列表和计数器模块级别 3 # list-style-position-property |
浏览器兼容性
BCD 表格仅在浏览器中加载
另请参阅
list-style
简写list-style-type
属性list-style-image
属性::marker
伪元素- CSS 列表和计数器 模块
- CSS 计数器样式 模块