gpt4 book ai didi

Jquery-UI Tab - 改变事件标签的颜色

转载 作者:行者123 更新时间:2023-11-28 01:31:43 29 4
gpt4 key购买 nike

对于用户点击的选项卡处于事件状态,我喜欢更改选项卡颜色。我有下面的样式。我可能还缺少其他样式吗?

我有以下代码

// Styling of tabs 
<style>
.ui-tabs-active {
background-color: green;
}
</style>


// tab details
<div id="tabs">
<ul>
<li><a href="#tabs-1">Tab1</a></li>
<li><a href="#tabs-2">Tab2</a></li>
<li><a href="#tabs-3">Tab3</a></li>
</ul>
<div id="tabs-1">
<p>Tab1 Content</p>
</div>
<div id="tabs-2">
<p>Tab2 Content</p>
</div>
<div id="tabs-3">
<p>Tab3 Content</p>
</div>
</div>

//Javascript

  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>

<script type="text/javascript">

$(function () {
$("#tabs").tabs();
});
</script>

它仍然显示为蓝色,而我需要它显示为绿色。

enter image description here

最佳答案

您的绿色被 CSS 特性覆盖。如果要更新事件选项卡颜色,则需要将颜色应用于选项卡类下的事件

.ui-tabs .ui-tabs-active {
background-color: green;
}

或者您也可以使用 !important。

See the running code here

关于Jquery-UI Tab - 改变事件标签的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50916882/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com