JQuery: dynamic height() with window resize()

前端 未结 4 1665
再見小時候
再見小時候 2021-01-31 05:00

I\'m having an issue identical to this poster: Jquery problem with height() and resize()

But the solution doesn\'t fix my issue. I have three stacked divs, and I want to

4条回答
  •  广开言路
    2021-01-31 05:20

    Okay, how about a CSS answer! We use display: table. Then each of the divs are rows, and finally we apply height of 100% to middle 'row' and voilà.

    http://jsfiddle.net/NfmX3/3/

    body { display: table; }
    div { display: table-row; }
    #content {
        width:450px; 
        margin:0 auto;
        text-align: center;
        background-color: blue;
        color: white;
        height: 100%;
    }
    

提交回复
热议问题