mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-20 02:40:27 +00:00
18 lines
473 B
HTML
18 lines
473 B
HTML
|
|
<!DOCTYPE html><style type="text/css">
|
||
|
|
* {
|
||
|
|
border: 1px solid black;
|
||
|
|
}
|
||
|
|
.float-left {
|
||
|
|
float: left;
|
||
|
|
font-size: 100px;
|
||
|
|
}
|
||
|
|
.d-inline-block {
|
||
|
|
display: inline-block;
|
||
|
|
width: 100px;
|
||
|
|
background-color: sandybrown;
|
||
|
|
}
|
||
|
|
.Layout-sidebar {
|
||
|
|
width: 220px;
|
||
|
|
background-color: beige;
|
||
|
|
}
|
||
|
|
</style><div class="Layout-sidebar"><div class="d-inline-block">floats!!!!!!</div><div class="float-left">float left</div></div>
|