emnem

CSS for Circles w/Filters & Subfilters Div Table 11-29-17

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