14 lines
119 B
CSS
14 lines
119 B
CSS
.table {
|
|
display: table;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.tr {
|
|
display: table-row;
|
|
}
|
|
|
|
.td {
|
|
display: table-cell;
|
|
}
|
|
|