css通用button的设置

前端开发通用样式中的button

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>通用button设置</title>
    <style type="text/css">
   /*btn是大按钮,btn-min是小按钮*/
    .btn{
        display: inline-block;
        height: 45px;
        line-height: 45px;
        background: #c60023;
        font-size: 17px;
        color: #fff;
        cursor: pointer;
        text-decoration: none;
        outline: none;
        font-weight: bold;
        padding: 0 20px;
        vertical-align: middle;
        border: none;
    }
    .btn-min{
        font-size: 10px;
        height: 30px;
        line-height: 30px;
    }

    </style>
</head>
<body>
<div class = "btn">按钮1</div>
<div class="btn btn-min">按钮2</div>
</body>

</html>

效果如图:



猜你喜欢

转载自blog.csdn.net/Alexbyy/article/details/79156445