我在 asp.net MVC 应用程序中使用 jquery 选项卡。我需要在下面自定义标签,
需要更改标签的背景颜色,这是通过下面的 CSS 完成的,
.ui-tabs .ui-tabs-nav a { background-color: #EBF1DE; }
Now when a tab is selected, the background color should be red, but below code not works, always the color is "#EBF1DE", but other attribute (like font weight:bolder works),
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state- active { font-weight: bolder; }
还有如何摆脱红色突出显示的背景,