mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-27 19:29:52 +00:00
21 lines
321 B
HTML
21 lines
321 B
HTML
<!DOCTYPE html>
|
|
|
|
<head>
|
|
<style>
|
|
#test {
|
|
display: table-column-group;
|
|
clear: both;
|
|
}
|
|
|
|
.col {
|
|
display: table-column;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="test">
|
|
<div class="col"></div>
|
|
<div class="col"></div>
|
|
</div>
|
|
</body>
|