mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 01:12:45 +00:00
16 lines
No EOL
224 B
HTML
16 lines
No EOL
224 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.table {
|
|
display: table;
|
|
width: 200px;
|
|
}
|
|
|
|
.row {
|
|
display: table-row;
|
|
}
|
|
|
|
.cell {
|
|
display: table-cell;
|
|
}
|
|
</style>
|
|
<div class="table"><div class="row"><div class="cell"></div></div></div> |