我试图仅使用css创建一个圆圈。我使用以下内容完成了此操作:
border-radius: 50%;
background: #f5f5f5;
transition: all 0s ease-in-out;
box-shadow: 0 0 3px gray;
我创造了一个小提琴:https://jsfiddle.net/rg991koa/11/
我基本上试图onClick
添加图片,但我的background-image
没有在圈内显示,我认为这是由于我使用background
颜色在我的元素上。
答案 0 :(得分:0)
将background-image
更改为background
.myNewClass {
background: url(http://static4.wikia.nocookie.net/__cb20131121214007/destinypedia/images/7/71/Information_Icon.svg) no-repeat;
background-size:100%;
}