我有这个div
<div style="overflow :auto ;height:480px" >
在表格中,
表中的内容是动态变化的,因此div的高度未知。
它运行良好,但现在我想使用百分比而不是480px
我尝试过身高:60%和身高:30%但不起作用。
by不起作用我的意思是表格下到页面。换句话说,div继续下降。
为什么请?
答案 0 :(得分:0)
尝试以下方法:
HTML
<div class="dynamic">
your div content here
</div>
CSS
.dynamic {
width: 100%;
height: auto;
/* your other properties here */
}