::marker - CSS(层叠样式表) 编辑
::marker
CSS pseudo-element(CSS伪元素) 选中一个list item的marker box,后者通常含有一个项目符号或者数字。它作用在任何设置了display: list-item
的元素或伪元素上,例如<li>
和<summary>
。
::marker {
color: blue;
font-size: 1.2em;
}
允许的属性值
在将::marker
作为选择器的规则中,只能使用某些CSS属性:
- All font properties(字体属性)
color
text-combine-upright
,unicode-bidi
anddirection
properties- The
content
property
规范指出,将来可能会支持其他CSS属性。
语法
::marker
示例
HTML
<ul>
<li>Peaches</li>
<li>Apples</li>
<li>Plums</li>
</ul>
CSS
ul li::marker {
color: red;
font-size: 1.5em;
}
Result
标准
Specification | Status | Comment |
---|---|---|
CSS Pseudo-Elements Level 4 ::marker | Working Draft | No significant change. |
CSS Lists Module Level 3 ::marker | Working Draft | Initial definition. |
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.参见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论