Removing border from tab ui control

oshirowanen picture oshirowanen · Mar 8, 2011 · Viewed 13.8k times · Source

I have the following script:

http://jsfiddle.net/2HNvL/

but I can't seem to remove the light gray border around the tab control. Anyone here know how to do that?

I have tried the following:

    #tabs .ui-widget { border:none;  padding:0px; margin:0px; }
    #tabs .ui-widget-header { border:none; display:none; padding:0px; margin:0px; }
    #tabs .ui-widget-content { border:none; padding:0px; margin:0px; }

But that does not work.

Answer

Michael Laffargue picture Michael Laffargue · Mar 8, 2011

Adding to your list a simple #tabs {border: none} should do the job.