开发者

Changing CSS of a tab in jQuery UI

开发者 https://www.devze.com 2023-01-04 20:38 出处:网络
I\'m using jQuery UI to do some tabs but I wan\'t one of the tab t开发者_Go百科o be to the right so I figured I\'ll use jQuery to change the CSS to float:right but that doesn\'t help.

I'm using jQuery UI to do some tabs but I wan't one of the tab t开发者_Go百科o be to the right so I figured I'll use jQuery to change the CSS to float:right but that doesn't help.

Do anyone know a better solution or how I can edit the CSS of one tab?


Adding float:right worked for me. Are you adding it to the right element?

$("ul.ui-tabs-nav li.ui-state-default:last").css("float", "right");
0

精彩评论

暂无评论...
验证码 换一张
取 消