How to Make the Content 100% height and equal height columns in this layout?

后端 未结 4 1105
旧巷少年郎
旧巷少年郎 2020-12-12 01:34

I have this layout where the my_menu is fixed at the top, followed by header, followed by content with 960px and centered, in which 3 columns have been floated left and fina

4条回答
  •  Happy的楠姐
    2020-12-12 02:10

    AFAIK this isn't possible with pure CSS without using grid layout or flexbox which are both not very much supported in the browsers. (Flexbox is at least already w3c working draft...)

    You can work around this by applying min-height, which has several drawback, or set the height via js. I don't know any reasonable crossbrowser css-solution atm.

提交回复
热议问题