This is an old revision of the document!


CSS

Misc Notes

/* center element vertial & horizontal */
.element {
    display: flex;
    align-items: center;
    justify-content: center;
}