Newer
Older
minerva / Tests / LibWeb / Layout / input / block-and-inline / button-with-abspos-pseudo-element.html
@minerva minerva on 13 Jul 338 bytes Initial commit
<!doctype html><style>
    button {
        position: relative;
        padding: 20px;
        background: initial;
    }   
    button:after {
        content: ""; 
        position: absolute;
        left: 0;
        top: 0;
        background: green;
        width: 100%;
        height: 100%;
    }   
</style><body><button></button>