box shadow on an ipad / safari

前端 未结 3 2079
星月不相逢
星月不相逢 2021-02-07 12:12

I\'m having trouble adding the nice shadow on focus for an input box on my ipad for safari.

Here\'s my code

/* remember to define focus styles! */
:focus         


        
相关标签:
3条回答
  • 2021-02-07 12:47

    I have the same problem but I found the solution:

    -webkit-appearance: none;
    

    However it does not work when there is an inset shadow.

    0 讨论(0)
  • 2021-02-07 12:48
    <input type="text" name="success" value="fail">
    

    No dice people, ipad hasn't got support for this which is so useless, chrome is it!

    Update:

    -webkit-appearance: none; FTW

    0 讨论(0)
  • 2021-02-07 12:52

    In my case, setting border-radius solved my problem.

    border-radius: 1px;
    
    0 讨论(0)
提交回复
热议问题