gpt4 book ai didi

html - 如何在 Bootstrap 自定义按钮上禁用悬停效果?

转载 作者:太空宇宙 更新时间:2023-11-03 21:08:52 25 4
gpt4 key购买 nike

我正在使用 bootstrap 3,这可能是个愚蠢的问题,但我无法在此处禁用 fa-chart-line 图标上的悬停效果:

<h5>
<span class="btn btn-circle blue1-icon">
<i class="fas fa-chart-line"></i>
</span> My Title
</h5>

CSS:

.blue1-icon {
background-color: #019993;
color: #fff;
}

.blue1-icon:hover {
text-decoration: none;
}

.btn-circle {
width: 30px;
height: 30px;
text-align: center;
padding: 6px 0;
font-size: 12px;
line-height: 1.428571429;
border-radius: 15px;
}


.btn-circle:hover {
cursor: default;
text-decoration: none !important;
}


.fa-chart-line:hover {
text-decoration: none !important;
}

我该如何解决这个问题?

最佳答案

我很难准确确定效果,但您始终可以使用 pointer-events

.btn-circle {
pointer-events: none;
display: inline-block; /* For added support */
}

链接:

关于html - 如何在 Bootstrap 自定义按钮上禁用悬停效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49145645/

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