mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 16:09:23 +00:00
16 lines
287 B
HTML
16 lines
287 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
* {
|
|
border: 1px solid black;
|
|
}
|
|
.ib {
|
|
display: inline-block;
|
|
}
|
|
.ib div {
|
|
background: pink;
|
|
}
|
|
.ib div.float {
|
|
background: orange;
|
|
float: left;
|
|
}
|
|
</style><body>Hello friends<div class=ib><div>1st</div><div>2nd</div><div class="float">float</div>
|