Newer
Older
minerva / Tests / LibWeb / Layout / input / pseudo-element-with-custom-properties.html
@minerva minerva on 13 Jul 269 bytes Initial commit
<!DOCTYPE html><style>
* {
    font: 20px MinervaSans;
}
.hello::before {
    position: absolute;
    height: 100px;
    width: 100px;
    --wide: 500px;
    width: var(--wide);
    --bg: orange;
    background: var(--bg);
    content: "";
}
</style><div class="hello">