flex三段布局

2017-11-16  本文已影响49人  月光在心中
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        body {
          display: flex;
          min-height: 100vh;
          flex-direction: column;
        }

        .content {
          flex: 1;
        }
    </style>
</head>
<body>
  <header>head</header>
  <main class="content">main</main>
  <footer>footer</footer>
</body>
</body>
</html>
上一篇 下一篇

猜你喜欢

热点阅读