gpt4 book ai didi

html - 仅溢出某些元素

转载 作者:太空宇宙 更新时间:2023-11-04 10:26:13 25 4
gpt4 key购买 nike

我有一个带有 overflow: hidden 的 div,里面有相当大的元素集合,我想在溢出它们的父元素时隐藏它们。但是我也有两个自定义下拉菜单,我想在打开时重叠并退出 div。有没有办法避免特定元素的溢出隐藏效果?这是一个 example .假设我希望蓝色方 block 越过红色边框并溢出它的父边界,但希望绿色方 block 保持切断和隐藏状态。

最佳答案

您可以使用伪元素重叠/隐藏某些元素,请参阅此示例。

html

<div class="red">
<div class="blue"></div>
<div class="green"></div>
</div>

CSS

* {
box-sizing: border-box;
}

.red {
position: relative;
border: 3px solid red;
width: 300px;
height: 300px;
}

.red:after {
content: "";
position: absolute;
left: 0;
right: 0;
height: 70px;
background: rgb(243, 245, 246);
bottom: -70px;
z-index: -1;
}

.blue,.green {
position: absolute;
width: 70px;
height: 70px;
bottom: -40px;
}
.blue {
background-color: blue;
z-index: 1;
left: 40px;
}
.green {
background-color: green;
z-index: -1;
right: 40px;
}

这里是 fiddle

关于html - 仅溢出某些元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36769109/

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