1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| *{ margin:0; padding:0; } html,body{ height:100%; } .wrap{ display:-webkit-box; display:-webkit-flex; display:-ms-flexbox; display:flex; -webkit-box-orient:vertical; -webkit-flex-direction:column; -ms-flex-direction:column; flex-direction:column; width:100%; height:100%; } .header,.footer{ height:40px; line-height:40px; text-align: center; background-color:#D8D8D8; } .main{ -webkit-box-flex:1; -webkit-flex:1; -ms-flex:1; flex:1; width:100%; padding:10px; box-sizing: border-box; }
|