mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:48:12 +00:00
27 lines
No EOL
429 B
HTML
27 lines
No EOL
429 B
HTML
<!DOCTYPE html>
|
|
<html><head><style>
|
|
* {
|
|
font-family: 'SerenitySans';
|
|
}
|
|
|
|
#guide {
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: blue;
|
|
}
|
|
|
|
#container {
|
|
position: relative;
|
|
float: left;
|
|
padding: 10px;
|
|
}
|
|
|
|
#box {
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: orange;
|
|
}
|
|
</style></head><body><div id="guide"><div id="container"><div id="box"> |