登陸註冊按鈕的樣式設計

QYHuiiQ發表於2018-09-01

效果圖:

<a class="header_login fr" href="#"><span>登入</span></a>
<a class="header_signup fr" href="#"><span>註冊</span></a> 

今天發現<ul>標籤中不僅可以放li標籤,還可以放a標籤。。。。。

css樣式:

.header_login{
    width: 72px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    margin: 0 12px 0 0;
    background: #202d40;
    border-radius: 2px;
    text-decoration: none;
}

.header_login:hover{
    background: #76808e;
    color: white;
}

.header_signup{
    width: 72px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    text-decoration: none;
    color: #202d40;
    font-size: 16px;
    margin: 0 0 0;
    background: white;
    border-radius: 2px;
    text-decoration: none;
    border: 1px solid #202d40;
    margin-right: 15px;
    margin-left: 5px;
}


.header_signup:hover{
    background: #76808e;
    color: white;
}


.fr{
    float: right;
    display: inline;
}
 

相關文章