在overflow: hidden之外显示子div内容的方法有多种,以下是其中几种常用的方法:
<style>
.parent {
position: relative;
width: 200px;
height: 200px;
overflow: hidden;
}
.child {
position: absolute;
top: -50px;
left: -50px;
width: 300px;
height: 300px;
background-color: red;
}
</style>
<div class="parent">
<div class="child"></div>
</div>
<style>
.parent {
width: 200px;
height: 200px;
overflow: hidden;
transform: translate3d(0, 0, 0);
}
.child {
width: 300px;
height: 300px;
background-color: red;
transform: translate3d(-50px, -50px, 0);
}
</style>
<div class="parent">
<div class="child"></div>
</div>
<style>
.parent {
width: 200px;
height: 200px;
overflow: hidden;
padding: -50px;
}
.child {
width: 300px;
height: 300px;
background-color: red;
}
</style>
<div class="parent">
<div class="child"></div>
</div>
这些方法可以根据具体的需求和布局选择使用,它们可以在overflow: hidden之外显示子div的内容。
领取专属 10元无门槛券
手把手带您无忧上云