1.html部分
<div class="hover right">
<i class="log_change state_psd"></i>
</div>
2.css部分
.log_change{
display: inline-block;
width: 50px;
height: 40px;
margin-top: 10px;
}
.state_psd{
background:url(../images/密碼修改.png) no-repeat center;
}
注意: i標簽需顯示為塊級元素,加上寬高屬性占位
display: inline-block;
width: 50px;
height: 40px;
類似img標簽,寬高屬性按照規范是需要賦值,先占位
