mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 09:52:31 +00:00
18 lines
No EOL
245 B
HTML
18 lines
No EOL
245 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
display: table;
|
|
}
|
|
|
|
.row {
|
|
display: table-row;
|
|
height: 100px;
|
|
}
|
|
|
|
.cell {
|
|
display: table-cell;
|
|
border: 1px solid black;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
<div class="row"><div class="cell"></div></div> |