mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
16 lines
280 B
HTML
16 lines
280 B
HTML
<!DOCTYPE html><style>
|
|
* {
|
|
border: solid 5px black;
|
|
}
|
|
.static {
|
|
height: 200px;
|
|
width: 200px;
|
|
background: green;
|
|
}
|
|
.absolute {
|
|
position: absolute;
|
|
height: 200px;
|
|
width: 100px;
|
|
background: blue;
|
|
}
|
|
</style><div class="static"></div><div class="absolute"></div></div>
|