mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:48:11 +00:00
19 lines
No EOL
362 B
HTML
19 lines
No EOL
362 B
HTML
<!DOCTYPE html><style>
|
|
* { border: 2px solid black; }
|
|
body {
|
|
width: 600px;
|
|
display: flex;
|
|
}
|
|
div {
|
|
width: 200px;
|
|
position: relative;
|
|
}
|
|
.athena {
|
|
background: green;
|
|
top: 4px;
|
|
left: -200px;
|
|
}
|
|
.exekiller {
|
|
background: red;
|
|
}
|
|
</style><body><div class="exekiller">exekiller</div><div class="athena">athena</div></body> |