首页htmlheaderPage Widget - 如何固定标题到顶部

Page Widget - 如何固定标题到顶部

我们想知道如何固定标题到顶部。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
root {
  display: block;
}

body {
  position: relative;
}

header, footer {
  position: fixed;
  width: 100%;
  background-color: black;
}

header {
  top: 0;
  height: 50px;
}

footer {
  bottom: 0;
  height: 100px;
}

section {
  position: relative;
  width: 100%;
  height: 1400px;
}
</style>
</head>
<body>
  <header></header>
  <section></section>
  <footer></footer>
</body>
</html>