mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:57:45 +00:00
23 lines
406 B
HTML
23 lines
406 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.container {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: red;
|
|
display: flex;
|
|
justify-content: end;
|
|
}
|
|
.top-right {
|
|
position: absolute;
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-left: 500px;
|
|
background: green;
|
|
border: 5px solid black;
|
|
padding: 5px;
|
|
}
|
|
</style>
|
|
<div class="container">
|
|
<div class="top-right"></div>
|
|
</div>
|