在css中设置按钮透明显示的方法:1.创建按钮;2.设置按钮宽高;3.使用opacity属性设置按钮透明显示;
在css中设置按钮透明显示的方法
1.首先,在页面中创建两个按钮,并定义class类用于对比;
<body><button type="button" class="clear">透明按钮</button>
<button type="button" >正常按钮</button>
</body>
2.按钮创建好后,在css中设置按钮的宽度和高度;
button{width:100px;
height:60px;
}
3.按钮的宽高设置好后,使用opacity属性即可实现按钮透明显示;
.clear{opacity:0.5;
}
效果: