mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
20 lines
251 B
HTML
20 lines
251 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.clearit:after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class=clearit>
|
|
<div style="float: left;">x</div>
|
|
</div>
|
|
<div style="float: left;">y</div>
|
|
</body>
|
|
</html>
|
|
|