CSS Max Height Property

后端 未结 6 1418
自闭症患者
自闭症患者 2020-12-05 04:30

Is there a good cross-browser way to set a max-height property of a DIV and when that DIV goes beyond the max-height, it turns int

6条回答
  •  半阙折子戏
    2020-12-05 04:52

    selector
    {
        max-height:900px;
        _height:expression(this.scrollHeight>899?"900px":"auto");
        overflow:auto;
        overflow-x:hidden;
    }
    

提交回复
热议问题