gpt4 book ai didi

css - 如果父元素的溢出不可见,如何防止子元素被剪裁?

转载 作者:技术小花猫 更新时间:2023-10-29 10:20:49 26 4
gpt4 key购买 nike

一旦为 overflow 分配了 visible 以外的值,它的所有子元素都将被剪裁。这是溢出属性的目的。但是,我必须使其中一个子元素“ float ”而不是被剪裁(如弹出窗口)——只是其中一个;不是全部。可能吗?

以下面为例。是否有任何 CSS 设置不剪裁黄色 div,同时剪裁蓝色元素? (目前他们都被剪掉了)

<div style="position:absolute;width:100px;height:50px;overflow:hidden;border:1px solid black">
<div style="top:30px;width:50px;height:100px;background:yellow">
</div>
<div style="position:absolute;left:50px;top:0;width:50px;height:100px;background:blue">
</div>
</div>

代码也可以在 http://jsfiddle.net/kZBxD/ 找到

最佳答案

你需要这样的东西吗:

检查这个 fiddle :http://jsfiddle.net/kZBxD/3/

<div style="position:absolute;width:100px;height:50px;overflow:hidden;border:1px solid black">
<div style=" position:fixed;width:50px;height:100px;background:yellow"></div>

关于css - 如果父元素的溢出不可见,如何防止子元素被剪裁?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9748043/

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