Newer
Older
minerva / Tests / LibWeb / Layout / input / flex / flex-row-reverse-with-centered-content.html
@minerva minerva on 13 Jul 366 bytes Initial commit
<!doctype html><style>
    .flex {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;

    }
    .flex > div {
        width: 50px;
        height: 50px;
    }</style><body><div class="flex"><div style="background-color: red;">1</div><div style="background-color: blue;">2</div><div style="background-color: yellow;">3</div>