圣杯布局

  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. main {
  7. margin-left: 200px;
  8. margin-right: 100px;
  9. }
  10. main> div {
  11. float: left;
  12. }
  13. #center {
  14. width: 100%;
  15. background-color: pink;
  16. }
  17. #left {
  18. position: relative;
  19. width: 200px;
  20. right: 200px;
  21. margin-left: -100%;
  22. }
  23. #right {
  24. width: 100px;
  25. margin-right: -100px;
  26. }
  27. <main>
  28. <div id="center">1</div>
  29. <div id="left">2</div>
  30. <div id="right">3</div>
  31. </main>

index页面布局

  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. header {
  7. height: 20px;
  8. background: red;
  9. }
  10. html {
  11. height: 100%;
  12. }
  13. body {
  14. height: 100%;
  15. }
  16. main {
  17. height: calc(100% - 40px);
  18. background-position: center;
  19. background-size: cover;
  20. background-image: url("https://oncesure.gitee.io/sure/img/4.jpg");
  21. background-repeat: no-repeat;
  22. }
  23. footer {
  24. height: 20px;
  25. background: black;
  26. }
  27. <header></header>
  28. <main></main>
  29. <footer></footer>

main页面布局

  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. html,body{
  7. height: 100%;
  8. }
  9. header {
  10. height: 20px;
  11. background: red;
  12. }
  13. main {
  14. min-height: calc(100% - 40px);
  15. overflow: hidden;
  16. }
  17. nav,section {
  18. margin-bottom: -100000px;
  19. padding-bottom: 100000px;
  20. }
  21. nav {
  22. width: 300px;
  23. float: left;
  24. }
  25. section {
  26. margin-left: 300px;
  27. background: green;
  28. }
  29. footer {
  30. height: 20px;
  31. background: black;
  32. }
  33. <header></header>
  34. <main>
  35. <nav>
  36. 1
  37. </nav>
  38. <section>
  39. 2
  40. </section>
  41. </main>
  42. <footer></footer>