0

In Ipad there is a shadow for input boxes, I fixed it with the following css,

input {
   -webkit-appearance: none;
}

But this style cause issue for radio buttons. Radio buttons are not displayed properly. So I modified my css as follows,

input:not([type="radio"]) {
   -webkit-appearance: none;
}

Now there is a shadow inside radio buttons in ipad. Please help me to find a solution to remove the shadow in radio buttons.

0 Answers0