Modern way to markup 100% height layout in HTML5 and CSS3

前端 未结 8 901
心在旅途
心在旅途 2021-02-02 11:49

I\'ve been away from marking up sites for some time. So, now we have HTML5 and a lot of new features in CSS. I have a common site layout with fixed size header and footer. And o

8条回答
  •  悲哀的现实
    2021-02-02 12:15

    Today, you would do like this (not much different really)

    http://jsfiddle.net/5YHX7/3/

    html, body { height: 100%; width: 100%; margin: 0; }
    div { height: 100%; width: 100%; background: #F52887; }
    

    and

提交回复
热议问题