欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CSS自定义button

程序员文章站 2024-03-26 08:12:59
...

CSS

button {
    width: 160px;
    height: 44px;
    border: medium none;
    border-radius: 2px;
    background: #00A3D9 none repeat scroll 0% 0%;
    font-size: 16px;
    color: #FFF;
    cursor: pointer;
}

HTML

<button>注册</button>

效果展示
CSS自定义button