mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
25 lines
467 B
HTML
25 lines
467 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.clearfix {
|
|
clear: both;
|
|
margin-top: 9999px;
|
|
margin-bottom: 100px;
|
|
background-color: black;
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
.square {
|
|
float: left;
|
|
width: 49px;
|
|
height: 49px;
|
|
}
|
|
.white {
|
|
background-color: salmon;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
.black {
|
|
background-color: slateblue;
|
|
}
|
|
</style>
|
|
<div><div class="square white"></div><div class="clearfix"></div><div class="square black"></div></div> |