Remove any style jQuery tabs -


i using jquery tabs when 1 active ugly border: see image

border

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

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -