首页 > 代码库 > 当div自适应的高度超过预设的高度的时候出现滚动条的办法

当div自适应的高度超过预设的高度的时候出现滚动条的办法

方法一:

<style type="text/css">
       #table1,#table2{
         overflow-y:auto;
         overflow-x:hidden;
         min-height:50px; 
         max-height:300px;
         display: none;
       }
</style>

方法二:三元运算符

$(function(){
           $("#sss").height() < 200  ? $("#sss").height(‘auto‘) : $("#sss").css(‘overflow‘, ‘auto‘).height(200);
          });

 

当div自适应的高度超过预设的高度的时候出现滚动条的办法