本文介绍了如何使用CSS绘制复选标记/ tick?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用CSS 绘制刻度符号?我发现使用的符号不美观。

How to draw the tick symbol using CSS? The symbols I find using Unicode isn't aesthetically-pleasing.

编辑
图标字体是一个很好的建议。我在寻找类似的东西。

推荐答案

现在,您可以包含网络字体,甚至缩小文件大小只需要您需要的字形。

You can now include web fonts and even shrink down the file size with just the glyphs you need.https://github.com/fontello/fontellohttp://fontello.com/

li:before {
  content:'[add icon symbol here]';
  font-family: [my cool web icon font here];
  display:inline-block;
  vertical-align: top;
  line-height: 1em;
  width: 1em;
  height:1em;
  margin-right: 0.3em;
  text-align: center;
  color: #999;
}

这篇关于如何使用CSS绘制复选标记/ tick?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 01:54