练习8_选择器练习.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .nav-content{
  9. border: 1px solid black;
  10. }
  11. .content{
  12. width: 400px;
  13. margin:0 auto;
  14. border:1px solid red;
  15. }
  16. .img-content{
  17. border: 1px solid black;
  18. }
  19. .img-content img{
  20. width: 300px;
  21. }
  22. .text-content{
  23. border: 1px solid black;
  24. background-color: #999;
  25. }
  26. .link-content{
  27. background-color: #666;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div class="container">
  33. <div class="nav-content">
  34. <div class="content">
  35. <h2>我的旅行故事</h2>
  36. </div>
  37. </div>
  38. <div class="img-content">
  39. <div class="content">
  40. <img src="./img/img1.jpg" alt="">
  41. </div>
  42. </div>
  43. <div class="text-content">
  44. <div class="content">
  45. <p>在过去的这个夏天,我踏上了一段令人难忘的旅行。</p>
  46. <p>我走过了山川湖泊,领略了大自然的壮丽景色。</p>
  47. <p>每一个瞬间都让我感到无比的兴奋和满足。</p>
  48. </div>
  49. </div>
  50. <div class="link-content">
  51. <div class="content">
  52. <h3>热门文章</h3>
  53. <ul>
  54. <li>
  55. <a href="https://www.baidu.com">美食探索之旅</a>
  56. </li>
  57. <li>
  58. <a href="https://www.baidu.com">文化体验</a>
  59. </li>
  60. <li>
  61. <a href="https://www.baidu.com">冒险与挑战</a>
  62. </li>
  63. </ul>
  64. </div>
  65. </div>
  66. </div>
  67. </body>
  68. </html>