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