fork download
  1. <!DOCTYPE html>
  2. <html lang="ja">
  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">
  7. <title>Document</title>
  8. <style>
  9. .Display_Grid {
  10. display: grid;
  11. grid-template-columns: 1fr auto 1fr;
  12. }
  13.  
  14. .Grid_Left {
  15. grid-column: 1;
  16. }
  17.  
  18. .Grid_Center {
  19. grid-column: 2;
  20. }
  21.  
  22. </style>
  23. </head>
  24. <body>
  25. <div class="Display_Grid">
  26. <div class="Grid_Left">
  27. <label><input type="checkbox"> aaaaa</label>
  28. </div>
  29. <div class="Grid_Center">
  30. <button type="button">ボタンA</button>
  31. <button type="button">ボタンB</button>
  32. </div>
  33. </div>
  34. </body>
  35. </html>
  36.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty