35 lines
614 B
CSS
35 lines
614 B
CSS
/*
|
|
<div class="divTable">
|
|
<div class="divTableBody">
|
|
<div class="divTableRow">
|
|
<div class="divTableCell">
|
|
abcd1234
|
|
*/
|
|
.divTable {
|
|
font-size: 16px;
|
|
display: table;
|
|
margin: auto;
|
|
border: 1px solid #000;
|
|
}
|
|
.divTableRow {
|
|
display: table-row;
|
|
}
|
|
.divTableHeading {
|
|
display: table-header-group;
|
|
}
|
|
.divTableCell, .divTableHead {
|
|
vertical-align: middle;
|
|
display: table-cell;
|
|
border: 1px solid #000;
|
|
}
|
|
.divTableHeading {
|
|
display: table-header-group;
|
|
font-weight: bold;
|
|
}
|
|
.divTableFoot {
|
|
display: table-footer-group;
|
|
font-weight: bold;
|
|
}
|
|
.divTableBody {
|
|
display: table-row-group;
|
|
}
|