mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
21 lines
381 B
HTML
21 lines
381 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
width: 200px;
|
|
margin-left: 100px;
|
|
}
|
|
|
|
.row {
|
|
height: 200px;
|
|
margin-left: -50px;
|
|
background-color: blueviolet;
|
|
}
|
|
.item {
|
|
float: left;
|
|
width: 50%;
|
|
}
|
|
</style><div class="row"><div class="item" style="background-color: lightblue">
|
|
a</div>
|
|
<div class="item" style="background-color: lightgoldenrodyellow">
|
|
b</div>
|
|
</div> |