解決ios safari中按鈕圓角問題

問題描述css

  使用html5編寫頁面在移動app中嵌套,總會涉及到按鈕的使用,在android手機瀏覽器中顯示正常,但在ios safari瀏覽器中會看到按鈕顯示爲圓角樣式,設置border-radius:0也很差使,其實添加css  「-webkit-appearance」就能解決問題。html

 

問題截圖html5

  

 

cssandroid

複製代碼

input .btn{
    display : inline-block ;
    height : 30px ;
    line-height : 30px ;
    border : 0 ;
    cursor : pointer ;
    font-size : 15px ;
    color : #fff ;
    font-weight : bold ;
    border-radius : 5px ;
    padding : 0px 20px;
    overflow : visible ;
    -webkit-appearance : none ;  /*解決iphone safari上的圓角問題*/}

複製代碼

htmlios

< input type ="button" class ="btn" />

 

總結web

   使用css樣式-webkit-appearance: none;  輕鬆解決iphone safari上的圓角問題。瀏覽器

相關文章
相關標籤/搜索