我想将我的Icon从另一个链接添加到HTML元素及其可点击的内容。
与班级,班级名称图标相关联的图标。
<a href="#" class="icon" title="shareStatus"></a>
注意: 我需要从其他来源获取图标。
您的建议是可取的
答案 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>