在css中给按钮设置背景图片的方法:1.创建按钮;2.设置按钮宽高;3.使用使用background属性设置背景图片;
在css中给按钮设置背景图片的方法
首先,在页面中创建两个按钮,并定义class类用于对比;
<body> <button type="button" class="imges">背景图片按钮</button>
<button type="button" >正常按钮</button>
</body>
按钮创建好后,在css中设置按钮的宽度和高度;
button{ width:100px;
height:60px;
}
按钮的宽高设置好后,使用background属性即可为按钮设置背景图片;
.imges { background:url(1.jpg) no-repeat;
}