Advertisement
emnem

CSS for Circles w/Filters Div Table 11-26-17

Nov 26th, 2017
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.53 KB | None | 0 0
  1. /* DivTable.com */
  2. .divTable{
  3.     display: table;
  4.     width: 100%;
  5. }
  6. .divTableRow {
  7.     display: table-row;
  8. }
  9. .divTableHeading {
  10.     background-color: #EEE;
  11.     display: table-header-group;
  12. }
  13. .divTableCell, .divTableHead {
  14.     border: 1px solid #999999;
  15.     display: table-cell;
  16.     padding: 3px 10px;
  17. }
  18. .divTableHeading {
  19.     background-color: #EEE;
  20.     display: table-header-group;
  21.     font-weight: bold;
  22. }
  23. .divTableFoot {
  24.     background-color: #EEE;
  25.     display: table-footer-group;
  26.     font-weight: bold;
  27. }
  28. .divTableBody {
  29.     display: table-row-group;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement