fieldset-grid-001.html 466 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE HTML>
  2. <html>
  3. <body>
  4. <fieldset style="display:grid; overflow:hidden; grid-template-columns: repeat(4,50px); grid-auto-rows: 20px; width:200px; height:200px;">
  5. <legend>Legend</legend>
  6. <p>X
  7. <p>X
  8. <p>X
  9. <p>X
  10. <p>X
  11. <p>X
  12. <p>X
  13. <p>X
  14. <p>X
  15. <p>X
  16. <p>X
  17. </fieldset>
  18. <fieldset style="display:grid; grid-auto-columns: 50px; grid-auto-rows: 20px;">
  19. <legend>Legend</legend>
  20. <p>X
  21. <p>X
  22. <p>X
  23. <p>X
  24. <p>X
  25. <p>X
  26. <p>X
  27. </fieldset>
  28. </body>
  29. </html>