我正在使用 jQuery 来获得 UI 中选项卡的圆角。我的问题是它在 Firefox 和 Ie9 中运行良好,但在 IE7 和 IE8 中失败(选项卡看起来像一个正方形。这是每个人的问题还是有解决方法?
<div id="fig">
<div id="fig-tabs">
<strong class="tab-current">1st tab</strong> <a href="" class="tab">2nd tab</a> <a href="" class="tab">3rd tab</a>
</div>
...</div>
而css是,
#fig-tabs { }
strong.tab-current
{
background-color: #FFF;
padding: 3px 8px 7px 8px;
-moz-border-radius: 4px 4px 0px 0px;
border-radius: 4px 4px 0px 0px;
text-decoration: none;
}
a.tab
{
background-color: #999;
padding: 3px 8px 2px 8px;
-moz-border-radius: 4px 4px 0px 0px;
border-radius: 4px 4px 0px 0px;
text-decoration: none;
}
a.tab:hover { background-color: #9ffff; }