首页 > Web开发 > 详细

css "x" button

时间:2018-01-04 14:50:55      阅读:230      评论:0      收藏:0      [点我收藏+]

 

HTML

✕ ? ✓
✖ ? ✔

✗
✘

× × ×

CSS

If you want to use the above characters from CSS (like i.e: in an :before or :after pseudo) simply use the Unicode HEX value like for example:

[class^="ico-"], [class*=" ico-"]{
  font: normal 1em/1 Arial, sans-serif;
  display: inline-block;
}


.ico-times:before{ content: "\2716"; }
.ico-check:before{ content: "\2714"; }
<i class="ico-times"></i>
<i class="ico-check"></i>

 

参考:

https://stackoverflow.com/questions/5353461/which-font-for-css-x-close-button 中Roko的回答。

 

css "x" button

原文:https://www.cnblogs.com/jane850113/p/8193296.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!