CSS display: table min-height not working

后端 未结 4 1033
别跟我提以往
别跟我提以往 2020-12-02 21:33

Does anyone know I can make min-height work with the latest browsers? I am using CSS tables and it seems to ignore min-height.

4条回答
  •  半阙折子戏
    2020-12-02 22:27

    Solution for Firefox

    Add height to unlock setting the min-height

    div {
        display: table;
        width: 100%;
        height: 0;
        min-height: 100px;
    }
    

    The number in height can be any other real value less or equal to min-height for making it work as expected.

提交回复
热议问题