Hi,
When I click on a textbox, teaxtarea etc. the border turns into a different color (orange, blue) in Chrome, Linux and in some others. How do prevent it with css?
Thanks
Hi,
When I click on a textbox, teaxtarea etc. the border turns into a different color (orange, blue) in Chrome, Linux and in some others. How do prevent it with css?
Thanks
The only thing I can think of would be to try an set the focus from the input. Try adding the following code to your css file and see if that works.
input:focus{
outline: none;
}
Setting the outline to none for the input:focus property will solve this issue. Here is a similar recent thread. http://www.daniweb.com/web-development/web-design-html-and-css/threads/426114/is-there-any-way-to-set-a-custom-active-color-for-form-fields
outline: none;
Solved. Thanks
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.