18 lines
232 B
CSS
18 lines
232 B
CSS
.table {
|
|
display: table;
|
|
}
|
|
|
|
.row {
|
|
display: table-row;
|
|
width: 30%;
|
|
border: 1px #888 solid;
|
|
padding: 1px;
|
|
}
|
|
|
|
.cell {
|
|
display: table-cell;
|
|
padding: 5px;
|
|
border: 1px solid #ccc;
|
|
/* other styles */
|
|
}
|