gpt4 book ai didi

css - 如何在 block 内制作边框底部?

转载 作者:行者123 更新时间:2023-12-03 04:24:41 24 4
gpt4 key购买 nike

如何制作border-bottom悬停事件后在 block 内?

我尝试使用文本阴影,但似乎这不是解决方案

最佳答案

嵌入框阴影似乎正是您所需要的

div {
height: 75px;
background: #c0ffee;
}

div:hover {
box-shadow: inset 0 -5px 0 red;
}
<div></div>

使用伪元素

div {
height: 75px;
background: #c0ffee;
position: relative;
}

div:hover::after {
content: '';
position: absolute;
bottom: 0;
width: 100%;
height: 5px;
background: red;
}
<div></div>

关于css - 如何在 block 内制作边框底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38115552/

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