如何为HTML元素的CSS类添加新图标

时间:2017-02-28 10:43:10

标签: html5 css3

我想将我的Icon从另一个链接添加到HTML元素及其可点击的内容。

与班级,班级名称图标相关联的图标。

How to add my icon to HTML element, like this

<a href="#" class="icon" title="shareStatus"></a>

注意: 我需要从其他来源获取图标。

您的建议是可取的

1 个答案:

答案 0 :(得分:1)

您可以使用背景图像使用如下解决方案:

.icon {
  content:"";
  width:50px;
  height:50px;
  background:url('http://placehold.it/50x50');
  display:inline-block;
  border-radius:50%;
}
<a href="#" class="icon" title="shareStatus"></a>