CSS-Grid.html 592 B

12345678910111213141516171819202122232425262728293031323334353637
  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> CSS Grid</title>
  7. <style>
  8. #box {
  9. width: 300px;
  10. height: 300px;
  11. display: grid;
  12. /* grid-template-columns: 1fr 1fr 1fr; */
  13. }
  14. .two {
  15. background: orange;
  16. }
  17. .one,
  18. .three {
  19. background: skyblue;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <h1> CSS Grid</h1>
  25. <div id="box">
  26. <div class="one"></div>
  27. <div class="two">target item</div>
  28. <div class="three"></div>
  29. </div>
  30. </body>
  31. </html>