2013-02-06 50 views
0

我試圖讓我的滑塊的導航選項卡上的IE8角落圓角:csr.steelcase.com ...(「我們的願景」, 「來自我們首席執行官的注意事項」等)在Wordpress中使用CSS3Pie ...做的一切正常,仍然無法正常工作

該網站在WordPress中編程,我已經按照我閱讀的幾篇文章正確安裝了CSS3PIE,但無論出於何種原因,我仍然無法找到角落圍繞IE8。我也嘗試鏈接到PIE.htc文件,而不是...無濟於事。

body.company .flex-control-paging li a.flex-active{background: white; color:#333; 
-webkit-border-top-left-radius: 10px; 
-webkit-border-top-right-radius: 10px; 
-moz-border-radius-topleft: 10px; 
-moz-border-radius-topright: 10px; 
border-top-left-radius: 10px; 
border-top-right-radius: 10px; 
zoom: 1; 
position: relative; 
behavior: url(http://csr.steelcase.com/wp-content/themes/steelcase360_theme_csr/pie_ver1/PIE.php); 
} 

有沒有人有任何想法?謝謝你的幫助。

回答

2

PIE.htc只支持邊框半徑的簡寫版,所以用這個:

body.company .flex-control-paging li a.flex-active{ 
    background: white; 
    color:#333; 
    -webkit-border-radius: 10px 10px 0 0; 
    -moz-border-radius: 10px 10px 0 0; 
    border-radius: 10px 10px 0 0; 
    zoom: 1; 
    position: relative; 
    behavior: url(http://csr.steelcase.com/wp-content/themes/steelcase360_theme_csr/pie_ver1/PIE.php); 
} 

http://css3pie.com/documentation/supported-css3-features/#border-radius

+0

你是男人。謝謝。 – user2048739

+0

嘿,沒問題。愛PIE.htc並使用它很多。 :) –

相關問題