网页小技巧

分享一些网页开发中实用的UI小技巧,快速完成页面搭建工作。

圆形按钮

<button>击</button>
button{
    width: 20px;
    height:20px;
    border-radius:50%;
}

半圆按钮

<button>击</button>
button{
    width: 40px;
    height:20px;
    border-radius:10px;
}
发布时间:2021-05-01