How to remove border from textbox in chrome

Google Chrome by default shows a border across textbox when user click on it, for remove this problem follow this simple code
How to remove border from textbox in chrome

How to remove border from textbox in chrome

CSS CODE

.textbox:focus
{
 outline:none;
}

HTML CODE

Textbox with Default Settings

Textbox without border

Download File Used in this example View Live Demo
Total Downloads:

No comments:

Post a Comment