所以我有<div>
。我想在通过overflow:visible
顶部的所有内容上转换css样式<div>
,并在div下方的所有内容上转换overflow:hidden
。这可能吗?
答案 0 :(得分:1)
答案 1 :(得分:0)
你的意思是
<style>
div { overflow:visible }
.Invisible { overflow:hidden }
</style>
<div>123</div>
<div>123</div>
<div>123</div>
<div class="Invisible">Invisible</div>