02.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. header {
  8. background-color: #777777;
  9. }
  10. ul {
  11. padding: 0;
  12. margin: 0;
  13. }
  14. header li {
  15. list-style-type: none;
  16. float: left;
  17. width: 100px;
  18. height: 50px;
  19. line-height: 50px;
  20. text-align: center;
  21. }
  22. header li a {
  23. text-decoration: none;
  24. color: white;
  25. }
  26. header li:hover, header li:first-child {
  27. background-color: #4CAF50;
  28. }
  29. section {
  30. height: 380px;
  31. }
  32. aside {
  33. width: 200px;
  34. height: 100%;
  35. float: left;
  36. }
  37. article {
  38. height: 100%;
  39. width: calc(100% - 200px);;
  40. float: left;
  41. /*background-color: green;*/
  42. }
  43. aside ul {
  44. height: 90%;
  45. }
  46. aside li {
  47. list-style-type: none;
  48. margin: 10px;
  49. background-color: #eee;
  50. line-height: 40px;
  51. }
  52. aside li a {
  53. text-decoration: none;
  54. padding-left: 15px;
  55. color: #666;
  56. }
  57. aside li:first-child {
  58. background-color: #008CBA;
  59. }
  60. </style>
  61. </head>
  62. <body>
  63. <header>
  64. <ul>
  65. <li><a href="">主页</a></li>
  66. <li><a href="">新闻</a></li>
  67. <li><a href="">联系我们</a></li>
  68. <li><a href="">关于我们</a></li>
  69. </ul>
  70. <div style="clear: both"></div>
  71. </header>
  72. </body>
  73. <section>
  74. <aside>
  75. <ul>
  76. <li><a href="" style="color: white">The Flight</a></li>
  77. <li><a href="">The City</a></li>
  78. <li><a href="">The Island</a></li>
  79. <li><a href="">The Food</a></li>
  80. <li><a href="">The People</a></li>
  81. <li><a href="">The History</a></li>
  82. <li><a href="">The Oceans</a></li>
  83. </ul>
  84. </aside>
  85. <article>
  86. <div style="text-align: center;background-color: #0d8ddb;margin: 20px;color: white;padding: 20px;">
  87. <h1>你好</h1>
  88. </div>
  89. <h1 style="margin: 20px">Chania</h1>
  90. <p style="text-indent: 20px">Chania is the capital of the Chania region on the island of Crete. The city can be divided in two parts, the
  91. old town and the modern city.</p>
  92. <p>You will learn more about responsive web pages in a later chapter.</p>
  93. </article>
  94. <div style="clear: both"></div>
  95. </section>
  96. <footer style="background-color: #444444;height: 100px;color: white;line-height: 100px;text-indent: 20px">底部文本</footer>
  97. </html>