码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-08-02 00:29:37      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:max   isp   自适应   nbsp   hid   blog   三元运算符   overflow   min   

方法一:

<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自适应的高度超过预设的高度的时候出现滚动条的办法

标签:max   isp   自适应   nbsp   hid   blog   三元运算符   overflow   min   

原文地址:http://www.cnblogs.com/person008/p/7271347.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!