怎么在子类中的css中阻止,去掉父层position:relative;
发布网友
发布时间:2022-04-20 23:12
我来回答
共1个回答
热心网友
时间:2022-04-21 00:42
"用CSS似乎是解决不了,用个简单的JS吧
<body onload=""psize()"">
<script>
function psize(){
document.getElementById(""parent"").style.height = document.getElementById(""son"").style.height;
}
</script>
<div id=""parent"" style=""background:#FF0; padding:10px; position: relative; width:300px;"">
<div id=""son"" style=""background:#F00; position: absolute; width:300px; height:1000px;""></div>
</div>
</body>"