gpt4 book ai didi

html - 在CSS中执行悬停时如何使子元素不填充他的父元素?

转载 作者:行者123 更新时间:2023-11-28 07:06:53 25 4
gpt4 key购买 nike

这是一个简单的例子:

.a{
background-color : red;
height : 30px;
width : 100px;
overflow : hidden;
}

.b{
background-color : green;
height : 30px;
width : 100px;
margin-top : 50px;
}

.a:hover{
display : block;
background-color : blue;
height : 30px;
width : 100px;
margin-top : 20px;
}
    <div class="a"></div>
<div class="b"></div>

(cursor over the red box)

如何让 child (绿框)固定在他的位置,即使他的 parent 向下移动?

谢谢大家

最佳答案

刚刚收到;

.a{
background-color : red;
height : 30px;
width : 100px;
overflow : hidden;
position : absolute;
}

.b{
background-color : green;
height : 30px;
width : 100px;
margin-top : 50px;
position : absolute;
}

.a:hover{
display : block;
background-color : blue;
height : 30px;
width : 100px;
margin-top : 20px;
}
    <div class="a"></div>
<div class="b"></div>

关于html - 在CSS中执行悬停时如何使子元素不填充他的父元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32898042/

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