button-css


按钮左边是圆角,右边是方角

左边是圆角,右边是方角

.left_radius{
border-top-left-radius: 6px;
border-top-right-radius: 0px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 0px;

}

右边是圆角,左边是方角

.right_radius{
border-top-left-radius: 0px;
border-top-right-radius: 6px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 6px;
}

全是方角

.no_radius{
border-radius:0px;
}

button 多个对齐

.btnDiv{
   display: flex;
   align-items: center;  
}  

Author: Savannah
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint polocy. If reproduced, please indicate source Savannah !
  TOC