11 lines
152 B
CSS
11 lines
152 B
CSS
|
.custom-table {
|
||
|
display: table;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.custom-table > * {
|
||
|
display: table-row;
|
||
|
}
|
||
|
.custom-table > * > * {
|
||
|
display: table-cell;
|
||
|
}
|