当前位置:Gxlcms >
html代码 >
固定高度div,随内容自动变高css定义方法_html/css_WEB-ITnose
固定高度div,随内容自动变高css定义方法_html/css_WEB-ITnose
时间:2021-07-01 10:21:17
帮助过:8人阅读
*{ font-size:12px; margin:0; padding:0;}
方法1:
#testBox{border:1px solid #cccccc;padding:5px;width:220px;
min-height:100px; /*高度最小值设置为:100px*/
height:auto !important; /*兼容FF,IE7也支持 !important标签*/
height:100px; /*兼容ie6*/
方法2:
/*单独用下面这个方法也可以实现*/
height:expression(this.height < 100 ? "100px" : this.height+"px");
无标题文档