Well, I'm trying to get rid of all these little things that browsers do to enter fields (for example, focus borders and what not).
input[type="text"] { font:bold 10px/12px verdana,arial,serif; padding: 20px; border-radius: 15px; } input[type="text"]:focus { outline: none!important; }
The code above does not work. I also tried editing the input via path 2.1 (
input.text { }; input.text:focus{ outline: none; }
) This did not work. Does anyone have any ideas?
source share