Guest User

Untitled

a guest
Feb 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. .table {
  2. display: table;
  3. width: 95%;
  4. border-spacing: 2px 2px;
  5. border-color: gray;
  6. border-collapse: collapse;
  7. }
  8.  
  9. .table-caption {
  10. display: table-caption;
  11. text-align: center;
  12. }
  13.  
  14. .table-body {
  15. border-color: inherit;
  16. display: table-row-group;
  17. vertical-align: middle;
  18. }
  19.  
  20. .cell-header {
  21. font-weight: bold;
  22. }
  23.  
  24. .cell, .cell-header {
  25. display: table-cell;
  26. vertical-align: inherit;
  27. padding: 4px;
  28. border: 1px solid #ccc;
  29. }
  30.  
  31. .row {
  32. display: table-row;
  33. vertical-align: inherit;
  34. border: 1px solid inherit;
  35. }
Add Comment
Please, Sign In to add comment