-webkit-appearance: caret; removes input border from android and windows browsers

StackOverflow https://stackoverflow.com/questions/23557729

  •  18-07-2023
  •  | 
  •  

سؤال

i just write this line

input, textarea{-webkit-appearance: caret;-moz-appearance: caret;}

remove input border screenshot Original Designs

Webkit-appearance just remove the inner shadows from ios input but it also removes the input borders from the windows and android webkit browsers.

هل كانت مفيدة؟

المحلول

From: Remove iOs input shadow

You should try removing the browser-specific styling with appearance: none;

/* Remove First */
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
/* Then Style */

...using your own bespoke styling.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top