这篇“CSS 列表模型之marker标记的使用方法”文章,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要参考一下,对于“CSS 列表模型之marker标记的使用方法”,小编整理了以下知识点,请大家跟着小编的步伐一步一
这篇“CSS 列表模型之marker标记的使用方法”文章,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要参考一下,对于“CSS 列表模型之marker标记的使用方法”,小编整理了以下知识点,请大家跟着小编的步伐一步一步的慢慢理解,接下来就让我们进入主题吧。
::marker 是什么
::marker
是一个标记伪元素,能够定义内容填充在list-item
上代表列表项的标志,先附上一个例子,就能很清楚地看出它的作用。
<style>li::marker { content: "(" counter(list-item) ")"; }li { display: list-item; }</style><ul> <li>zhaodao88.com 找商机</li> <li>zhaodao88.com 找人脉</li> <li>zhaodao88.com 找采购</li></ul>
效果图:
在这里,marker
为元素定义的是每一项列表项前面的标记符,在伪元素内的content
的内容就是要在列表项前面所填充的内容。
使用::marker填充标记内容
需要注意的是,普通元素要想使用marker
,必须将元素定义成display: list-item
,list-items
在创建的时候会自动生成marker
和counter
。
标记的样式可以使用list-style-type
和 list-style-image
属性或者直接使用::marker
伪元素进行样式编写。下面展示一个例子。
用::marker
伪元素对标记进行控制,伪元素内content
的内容就是标记符的内容
<style> p { margin-left: 12 em; } p.note { display: list-item; counter-increment: note-counter; } p.note::marker { content: "Note " counter(note-counter) ":"; color: blue; font-weight: bold; }</style><p>zhaodao88.com 找商机</p><p class="note">zhaodao88.com 找采购</p><p>zhaodao88.com 找人脉</p>
效果如图:
当然也可以为标记设置字体样式、颜色等属性,类似上面效果li::marker { color: blue; font-weight:bold; }
值得注意的是:目前只有以下属性能够作用于marker
伪元素上
所有的字体样式:font相关
white-space属性
color属性
text-combine-upright, unicode-bidi, direction属性
content属性
所有的animation和transition属性
有issue提出,在标记使用white-space: pre
可能不会有很好的效果,可以尝试text-space-collapse: preserve-spaces
和text-space-trim: discard-after
一起使用,更能达到想要的效果,感兴趣的请移步 issue 4448和issue 4891
使用list-style-image图像填充标记内容
指定标记图像,当列表项内容正常时,用指定图像填充列表项的标记。
list-style-image
正常取值 <image> | none
,未定义情况下是 none
,作用在列表项list-items
下。其中<image>
用于指定标记图像的url
。参考链接移步
下面是使用例子,将会为<li>
标签的标记块填充上指定链接的ellipse.png
图像
li { list-style-image: url("Http://www.example.com/ellipse.png") }
使用list-style-type文本类型填充标记内容
指定标记字符串,当列表项内容正常时,用指定字符串填充列表项的标记。
list-style-type
正常取值 <counter-style> | <string> | none
,未定义情况下是 disc(圆形标记符)
,作用在列表项list-items
下。参考链接移步
<counter-style>
是CSS 定义的计数器样式,允许开发者自定义counter
的样式。比如:
@counter-style thumbs { system: cyclic; symbols: "\1F44D"; suffix: " ";}ul { list-style-type: thumbs;}
具体<counter-style>
定义规则参考
下面是关于list-style-type
的使用例子(如果作用元素不是列表元素,则元素的display必须设置为list-item)
ul { list-style-type: "★"; } // 使用"★"作为标记符p.note { // 如果作用元素不是列表元素,则元素的display必须设置为list-item display: list-item; list-style-type: "Note: "; list-style-position: inside;}ol { list-style-type: upper-roman; } // 定义为罗马数字的大写形式ul { list-style-type: symbols(cyclic '○' '●'); } // 标记符在'○'和'●'之间切换ul { list-style-type: none; } // 不显示标记
注意
::marker
伪元素标记不是所有浏览器都支持,包括chrome
也只是在80以上版本通过启用experimental WEB PlatfORM
才支持,如果你想要测试效果,请前往chrome://flags
启用experimental Web Platform
。并不推荐在实际项目去使用这条规则,更推荐使用常规的做法去设置标记块样式。
以上是“CSS 列表模型之marker标记的使用方法”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网精选频道!
--结束END--
本文标题: CSS 列表模型之marker标记的使用方法
本文链接: https://lsjlt.com/news/251267.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0