Home > CSS Help > Safari input fields

Safari input fields



When using Safari, whenever you click inside an input field, a highlight goes around the field (focus ring). Is there anyway to use CSS to remove the focus ring altogether?

    
Guest
Best Answer


Try this:


Code:


input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
outline: 0 none;
}



Was this answer helpful ? Yes No   
Guest


Quote:
Originally Posted by Kravvitz
Try this:


Code:


input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
outline: 0 none;
}






Worked like a charm. Are you stalking me?

Was this answer helpful ? Yes No   
Guest
 
 
Home - About Infoqu - Contact - Privacy Statement - Link to Infoqu - Bookmark Infoqu

Copyright 2007-2010 by Infoqu. All rights reserved