各類按鈕的樣式

例子:orm

代碼:blog

<button type="button" disabled="disabled">button提交</button>
    <form action="" method="get">
        <input type="button" value="input button提交"/>
    </form>
    <a href="#" class="tj">a提交</a>
    <a class="btn btn-home" href="#">繼續逛逛</a>
    <a class="btn btn-order" href="#">查看個人訂單</a>get

  <style>
    button, fieldset, img, input {
        border: none;
        outline: none;
        margin: 0;
        padding: 0;
    }
    a{
        text-decoration: none;
        outline: 0 none;
    }
    button,input[type='button'],.btn-sub{
        margin-bottom: 50px;
        width: 168px;
        line-height: 44px;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        cursor: pointer;
        height: 44px;
        border-radius: 44px;
        background-image: linear-gradient(to bottom,#ff785b,#ff3869);
        box-shadow: 0 4px 9px 0 #fbc1ba;
    }
    .btn-sub{
        display: block;
    }
    .btn {
        display: inline-block;
        width: 180px;
        height: 48px;
        line-height: 48px;
        text-align: center;
        border-radius: 48px;
        font-size: 19px;
        background: #fff;
    }
    /*繼續逛逛*/
    .btn-home {
        margin-right: 30px;
        border: 1px solid #d0d0d0;
        color: gray;
    }
    /*查看個人訂單*/
    .btn-order {
        background: #008ddc;
        color: #fff;
    }
    </style>input

總結:a連接用於跳轉的按鈕,<button>用於在頁面上觸發js的按鈕,input[type='button']用於在表單提交的按鈕io

相關文章
相關標籤/搜索