Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove yellow border comes around the textbox in Chrome & Safari

Tags:

html

css

i have a html page.While i take the page in chrome or Safari , there is a yellow border around the text box.

For removing the border,i have added

<style type="text/css">
  input{
  outline:none;
}
</style>

And the border has gone.

But while i take the page in Mac machine (chrome & Safari).it still there. Anyone have idea of how to fix it in Mac?

like image 772
Linto Avatar asked Dec 26 '22 16:12

Linto


1 Answers

:focus {
  outline: 0;
  outline-color: transparent;
  outline-style: none;
}
like image 89
coderabbi Avatar answered Dec 29 '22 09:12

coderabbi