我是靠谱客的博主 舒服向日葵,最近开发中收集的这篇文章主要介绍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>

效果如图:



最后

以上就是舒服向日葵为你收集整理的css通用button的设置的全部内容,希望文章能够帮你解决css通用button的设置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部