Blogger Information
Blog 19
fans 0
comment 0
visits 10721
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
grid布局
牙森江
Original
739 people have browsed it

1.grid 布局

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .container {
  14. display: grid;
  15. width: 960px;
  16. height:600px;
  17. grid-template-columns: repeat(4,1fr);
  18. grid-template-rows: repeat(2,1fr);
  19. background-color: rgb(189, 237, 221);
  20. margin: 20px auto;
  21. place-items: center;
  22. }
  23. .container .box {
  24. margin: 20px 20px;
  25. text-align: center;
  26. }
  27. .container .box img {
  28. position: relative;
  29. max-width: 200px;
  30. height: 220px;
  31. border-radius: 12px;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class="container">
  37. <div class="box">
  38. <img src="images/背景1.jpg" alt="">
  39. <p>文章标题</p>
  40. </div>
  41. <div class="box">
  42. <img src="images/背景2.jpg" alt="">
  43. <p>文章标题</p>
  44. </div>
  45. <div class="box">
  46. <img src="images/背景3.jpg" alt="">
  47. <p>文章标题</p>
  48. </div>
  49. <div class="box">
  50. <img src="images/背景4.jpg" alt="">
  51. <p>文章标题</p>
  52. </div>
  53. <div class="box">
  54. <img src="images/背景5.jpg" alt="">
  55. <p>文章标题</p>
  56. </div>
  57. <div class="box">
  58. <img src="images/背景6.jpg" alt="">
  59. <p>文章标题</p>
  60. </div>
  61. <div class="box">
  62. <img src="images/背景7.jpg" alt="">
  63. <p>文章标题</p>
  64. </div>
  65. <div class="box">
  66. <img src="images/背景8.jpg" alt="">
  67. <p>文章标题</p>
  68. </div>
  69. </div>
  70. </body>
  71. </html>

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:好的,效果不错,也没什么问题
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post