iOS forces rounded corners and glare on inputs

后端 未结 6 1804
礼貌的吻别
礼貌的吻别 2020-11-29 17:29

iOS devices add a lot of annoying styles on form inputs, particularly on input[type=submit]. Shown below are the same simple search form on a desktop browser, and on an iPad

6条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-29 17:56

    The version I had working is:

    input {
        -webkit-appearance: none;
    }
    

    In some webkit browser versions, you may also be faced with the border-radius still being in place. Reset with the following:

    input {
        -webkit-border-radius:0; 
        border-radius:0;
    }
    

    This can be extended to apply to all webkit styled form components such as input, select, button or textarea.

    In reference to the original question, you wouldn't use the value 'none' when clearing any unit based css element. Also be aware that this hides checkboxes in Chrome, so perhaps use something like input[type=text] or input[type=submit], input[type=text] or instead filter out those that don't use rounded corner settings such as input:not([type=checkbox]), input:not([type=radio]).

提交回复
热议问题