mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 09:52:31 +00:00
23 lines
418 B
HTML
23 lines
418 B
HTML
<style>
|
|
.clearfix {
|
|
clear: both;
|
|
}
|
|
.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>
|