在css中設置按鈕為圓角的方法:1.創建按鈕;2.設置按鈕大小;3.使用使用border-radius屬性設置按鈕圓角;
在css中設置按鈕為圓角的方法
1.首先,在頁面中創建一個按鈕;
<body><button>按鈕<button>
</body>
2.按鈕創建好后,在css中為按鈕設置大小;
button {width:60px;
height:30px;
margin:50px;
}
3.按鈕的大小設置好后,使用border-radius屬性即可設置按鈕為圓角;
button {width:60px;
height:30px;
margin:50px;
border-radius:30px;
}