mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
18 lines
245 B
HTML
18 lines
245 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
display: table;
|
|
}
|
|
|
|
.row {
|
|
display: table-row;
|
|
}
|
|
|
|
.cell {
|
|
display: table-cell;
|
|
border: 1px solid black;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
<div class="row"><div class="cell"></div></div> |