gpt4 book ai didi

html - 悬停时 div 下方的小蓝色 "underline"- 这是从哪里来的?

转载 作者:太空宇宙 更新时间:2023-11-04 06:16:52 27 4
gpt4 key购买 nike

我正在制作一个向下滚动的箭头,我使用了两个旋转的 div 来制作人字形。出于某种原因,当我将鼠标悬停在其包含的 div 上时,V 形下方会出现一条蓝色的小下划线。

我尝试了 text-decoration: none 用于那些元素和它们的父元素;我真的没想到这会奏效。我不确定是什么原因导致了我的代码。有人有什么想法吗?

Here's a picture of what I'm describing; there's a small blue underline beneath the tip of the arrow

#arrow-div {
position: absolute;
background-color: yellow;
text-decoration: none;
bottom: 10px;
right: 0;
left: 0;
}

#arrow-button {
width: 80px;
height: 80px;
margin: auto;
transition: .3s;
text-decoration: none;
}

#arrow-button:hover {
transition: .5s;
border: 4px dotted black;
border-radius: 60px;
text-decoration: none;
}

.arrow {
height: 30px;
width: 8px;
background-color: black;
border-radius: 2px;
display: inline-block;
margin-top: 25px;
text-decoration: none;
}

#arrow-left {
transform: rotate(-45deg);
margin-right: 2px;
}

#arrow-right {
transform: rotate(45deg);
margin-left: 2px;
}
<div class="container" id="arrow-div">
<a href="#slant-1">
<div class="container" id="arrow-button">
<div class="arrow" id="arrow-left"></div>
<div class="arrow" id="arrow-right"></div>
</div>
</a>
</div>

最佳答案

它来自 <a><a>默认 CSS 应用 text-decoration:underline;

请添加下面的代码。

#arrow-div a {
text-decoration: none;
}

关于html - 悬停时 div 下方的小蓝色 "underline"- 这是从哪里来的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55877230/

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