gpt4 book ai didi

css - 在 MVC Bootstrap 中更改导航栏中按钮的悬停颜色

转载 作者:太空宇宙 更新时间:2023-11-04 08:48:47 24 4
gpt4 key购买 nike

我采用了一个示例主题并将导航栏更改为与背景相同的颜色(因此它不可见但存在)。现在,当我将鼠标悬停在按钮字形上时,它会消失,因为悬停颜色也与背景相同。我知道我需要更改 CSS 中的某些内容,但不确定如何更改。

        <nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href='@Url.Action("Index", "Home")'>
<img class="img-responsive" alt="50x50" width="100" height="100" src="data:image/png;base64,..../>
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
---- BELOW IS THE BUTTON I WANT TO CHANGE

<form class="navbar-form navbar-left">
<a href="@Url.Action("Index", "Configuration")" type="button" class="btn navbar-btn"><span style="font-size:2em;"class="glyphicon glyphicon-cog"></span></a>
</form>

@Html.Partial("_LoginPartial")
</div>
</div>
</nav>

最佳答案

:hover 选择器用于在将鼠标悬停在元素上时选择元素。

例子:

div {
width: 200px;
height: 100px;
background-color: red;
color: white;
}

div:hover {
background-color: blue;
}
<div>Hover me</div>

关于css - 在 MVC Bootstrap 中更改导航栏中按钮的悬停颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43589522/

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