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