“CSS Flip Text” Code-Antworten

Rückwärts Text CSS

.mirror{
    display: inline-block; 
    font-size: 30px;

    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -moz-transform: matrix(-1, 0, 0, 1, 0, 0);
    -o-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}
Elegant Earthworm

CSS Flip Text

transform: scaleX(-1);
Lucas Juan

Ähnliche Antworten wie “CSS Flip Text”

Fragen ähnlich wie “CSS Flip Text”

Weitere verwandte Antworten zu “CSS Flip Text” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen