Newer
Older
minerva / Tests / LibWeb / Layout / input / block-and-inline / abspos-with-bottom-right-insets-relative-to-box-with-paddings.html
@minerva minerva on 13 Jul 392 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;
    bottom: 0;
    right: 0;
    background-color: magenta;
}
</style><div class="box"><div class="inner"></div></div>