Newer
Older
minerva / Tests / LibWeb / Layout / input / flex-column-item-with-auto-height-depending-on-auto-width.html
@minerva minerva on 13 Jul 347 bytes Initial commit
<!DOCTYPE html><html><head><style>
* {
    border: 1px solid black;
    font: 80px MinervaSans;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 500px;
}
.upper {
    background: orange;
}
</style></head><body class="hero"><div class="upper">This entire text should be on orange background.</div></div>