Centering the link as the button

后端 未结 3 1575
暖寄归人
暖寄归人 2021-01-15 17:32



        
3条回答
  •  南笙
    南笙 (楼主)
    2021-01-15 18:27

    Try This:

    * {
       box-sizing: border-box;
    }
    
    div {
       width: 100px;
       position: relative;
       margin: 0 auto;
    }
    
    .button {
       width: 100%;
       display: block;
       text-decoration: none;
       color: #103d82;
       background: #fff;
       border: 1px solid #d2cfcd;
       font-size: 1.4rem;
       text-align: center; 
       padding: 10px;
    }
    
    

提交回复
热议问题