Remove any style jQuery tabs -
i using jquery tabs when 1 active ugly border: see image
i have tried give tab class , style (as can see green blue text) nothing helped remove this.
but reason wont help
$(function() { $( "#more" ).tabs(); });
<div id="more"> <ul id="cats"> <li><a href="#alles">all</a></li> <li><a href="#web">websites</a></li> <li><a href="#apps">apps</a></li> </ul> </div>
i can style blue border wont go away
try adding css.
#more { outline: none; }
as others have mentioned affects accessibility users, can apply alternative style tabs retain accessibility... example, change font colour on focus:
#more a:focus { color: #f00; }
Comments
Post a Comment