mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 16:09:23 +00:00
22 lines
No EOL
238 B
HTML
22 lines
No EOL
238 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.left {
|
|
float: left;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
}
|
|
|
|
.c {
|
|
margin-top: 70px;
|
|
clear: both;
|
|
float: left;
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<h1 class="left">A</h1>
|
|
<h1 class="right">B</h1>
|
|
<div class="c">X</div>
|
|
</div> |