Newer
Older
minerva / Tests / LibWeb / Layout / input / block-and-inline / abspos-without-insets.html
@minerva minerva on 13 Jul 363 bytes Initial commit
<!DOCTYPE html><style>
* {
    border: 1px solid black;
}

.box {
    position: relative;
    padding: 10px 50px 100px 20px;
    background-color: mediumseagreen;
    width: 200px;
    height: 200px;
}

.inner {
    position: absolute;
    width : 100px;
    height: 100px;
    background-color: magenta;
}
</style><div class="box"><div class="inner"></div></div>