table 谷歌下不出现滚动条

<table>
</table>

<style>
table {overflow-y:scroll;max-height:152px; height:auto;}
<style>


问题:ie下,火狐下能正常出现滚动条

谷歌不能出现滚动条

解决:

第1种:

头部<!DOCTYPE dtd的问题

第2种:

table {max-Height:120px;min-Height:40px;height:expression(this.scrollHeight > 120 ? "120px" : (this.scrollHeight < 40 ? "40px" : "auto")); 
overflow-y:scroll; border:1px solid #ccc;}

  

百度关键词:div 最大高度

参考:

http://zhidao.baidu.com/link?url=3NHwhXRn8EI4VUu6Xz0IN7DpbuKpnEMmoOVpeawfOekgT2d-nRI0rwfHSAagX17NqxKBw8FYcmYdfWGq2E6Qc

原文地址:https://www.cnblogs.com/huaci/p/3851559.html