Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any way to find the default styling for input text field glow?

Tags:

css

You know that sexy glow that surrounds an input field whenever it has focus?

Without going into too much detail, I need to recreate that effect outside of an input field, but I can't seem to find the stylesheet that dictates such an effect anywhere.

(I know how to do it, using the outline property and so on. I'm just wondering if there's a way I can find the EXACT values used by default for input text fields.)

like image 889
Adam Templeton Avatar asked Dec 20 '22 20:12

Adam Templeton


1 Answers

chrome has the outline style for inputs as default. i have to disable that rule for many projects.

use the chrome developer tool to see the browser style rules.

see how to do this here:

chrome developer tool info

like image 165
chrisvillanueva Avatar answered May 22 '23 07:05

chrisvillanueva