You know that blue border that when you write something inside of an input. How do i make dissapear | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

You know that blue border that when you write something inside of an input. How do i make dissapear

1st Jul 2020, 10:21 AM
Andrei I
Andrei I - avatar
2 Answers
0
In addition to what Potato Squad said, focus styling is very important in making your site accessible for keyboard users. Therefore it is not advisable for a focusable element to be without focus styling. After removing the border, you should consider adding another form of styling, may be change the background. textarea:focus, input:focus { outline: none; border: none; background-color: #eec; }
1st Jul 2020, 1:58 PM
Ore
Ore - avatar
+ 1
Style: textarea:focus, input:focus{ outline: none; }
1st Jul 2020, 10:22 AM
Potato Squad
Potato Squad - avatar