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