在css中设置按钮为圆角的方法:1.创建按钮;2.设置按钮大小;3.使用使用border-radius属性设置按钮圆角;
在css中设置按钮为圆角的方法
首先,在页面中创建一个按钮;
<body> <button>按钮<button>
</body>
按钮创建好后,在css中为按钮设置大小;
button { width:60px;
height:30px;
margin:50px;
}
按钮的大小设置好后,使用border-radius属性即可设置按钮为圆角;
button { width:60px;
height:30px;
margin:50px;
border-radius:30px;
}