DEV Community

Discussion on: Caption This! 🤔💭

Collapse
 
fyodorio profile image
Fyodor
footer:first-child { flex-direction: row-reverse; }
Enter fullscreen mode Exit fullscreen mode
Collapse
 
jimmymcbride profile image
Jimmy McBride
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
codingjlu profile image
codingjlu

But the here is upside down too, I'd think transforming is better:

footer:first-child { transform: rotateZ(180deg); }
Enter fullscreen mode Exit fullscreen mode