这是效果图:
- HTML
<div id="selectFile">
<button></button>
</div>
- CSS(引入的background要在那三行之前!!)
不然就像这样:
#selectFile {
width:45px;
height:45px;
border-radius:50%;
position:fixed;
top:240px;
left:270px;
background-color:pink;
}
#selectFile button {
border:none;
outline:none;
background: url('../images/1.svg');
position:absolute;
top:10px;
left:10px;
/*以下三行自定义svg图标大小,缺一不可*/
background-size: 25px 25px;
width:25px;
height:25px;
}