overflow:hiddden与绝对定位的应用场景的事例

做一个点击查看显示详细信息的效果。

说一下问题描述,最外面的父元素overflow-parent设置了overflow:hidden,

然后子元素overflow-child没有设置overflow,设置了relative,为其包含的绝对定位的元素进行位置确定,这个元素点击时高度增加到300px.

<!doctype html>
<html>
<head>
<script src="jquery-1.9.1.min.js"></script>
<style>
.overflow-parent{
    width: 200px;
    height: 200px;
    border: 1px solid #ccc;
    overflow: hidden;
}
.overflow-child{
    position: relative;
    width: 100px;
    height: 198px;
    border: 1px solid blue;
}
.position{
    position: absolute;
    right: 10px;
    background: #000;
    bottom: top;
    top: 110px;
    z-index: 100;
    width: 50px;
    height: 50px;    
}
.height{
    height:300px;
}
</style>
<script>
function addHeight(htmlObj){
    $(htmlObj).toggleClass("height");
}
</script>
</head>
<body>

<div class="overflow-parent">
    <div class="overflow-child">
        <div class="position" onclick="addHeight(this)">            
        </div>    
    </div>
</div>

</body>
</html>

 

效果图:

接下来点击这个绝对定位的元素,效果如下,我们发现没有超过包含的最终父元素overflow-parent。

然后把overflow-parent的overflow去掉,好了,结论是,我们做这个绝对定位和 堆叠时,要确定下其所有的祖先元素是否包含了overflow:hiden属性,不然的话,会发现无论怎么设置,都不会显示完全。

 

转载于:https://www.cnblogs.com/webWf/p/4711498.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值