2012-09-18 72 views
1

我目前剛剛將我的頭轉移到jQuery UI選項卡的SPRY選項卡式面板,並想知道是否有快速的方法來從後面刪除內容區域UI標籤。我基本上想要標籤後面的白色頁面背景,並且內容區域出現在標籤下面。標籤appears here的jQuery UI版本以及我希望如何顯示的選項卡可以是viewed on this page.我使用jQuery Themeroller來創建原始選項卡樣式。 謝謝!jQuery UI選項卡 - 刪除標籤後面的標題和內容區域

回答

6

這可以用CSS完成。

#copy-main .ui-widget-header{ 
    background:transparent !important; 
} 

#copy-main .ui-tabs{ 
    padding: 0 !important; 
    margin-top:40px; 
    position:relative; 
} 

#copy-main .ui-tabs .ui-tabs-nav{ 
    padding: 0 !important; 
    position:absolute; 
    margin:-32px -1px 0; //compensation 
} 
+0

真棒謝謝! –

+1

如果這對你有效,你應該接受我的迴應,讓其他人知道(當然是來自未來),這是一種可行的方法。 – Ohgodwhy

相關問題