style.css 278 B

1234567891011121314151617181920212223
  1. table {
  2. margin: 10px auto;
  3. border-collapse: collapse;
  4. }
  5. td {
  6. border: 2px solid grey;
  7. padding: 15px;
  8. text-align: center;
  9. }
  10. input {
  11. margin: 0 10px;
  12. }
  13. .wrapper {
  14. display: flex;
  15. justify-content: center;
  16. }
  17. .highlight {
  18. background: lightblue;
  19. }