html – 如何在无序列表中使用tick / checkmark符号(✓)代替子弹?

前端之家收集整理的这篇文章主要介绍了html – 如何在无序列表中使用tick / checkmark符号(✓)代替子弹?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个列表,我想在列表文本之前添加tick符号.有没有可以帮助我应用这种方式的CSS?
✓ this is my text
✓ this is my text
✓ this is my text
✓ this is my text
✓ this is my text
✓ this is my text

注意:我想要这种HTML代码

<ul>
  <li>this is my text</li>
  <li>this is my text</li>
  <li>this is my text</li>
  <li>this is my text</li>
  <li>this is my text</li>
</ul>

解决方法

@H_404_11@ 您可以使用 pseudo-element在每个列表项之前插入该字符:
ul {
  list-style: none;
}

ul li:before {
  content: '✓';
}
<ul>
  <li>this is my text</li>
  <li>this is my text</li>
  <li>this is my text</li>
  <li>this is my text</li>
  <li>this is my text</li>
</ul>
原文链接:https://www.f2er.com/html/225208.html

猜你在找的HTML相关文章