更新 2020 / 11 / 11

CSS でフォームの角丸や影を消す

参照元 > https://www.webantena.net/css/change-ios-input-type-text-design/

CSS

                        
input[type=text]    {
    font-size : 16px;
    border : 1px solid #ccc;
    -webkit-border-radius : 0;
    -webkit-appearance : none;
    -webkit-tap-highlight-color : rgba(0,0,0,0);
}