|
|
|
|
|
by brianzelip
3728 days ago
|
|
A comment in the OP offers a flexbox solution that only applies style to figure as opposed to figure and figcaption like the OP.[0]. tl;dr ```
/* the simple trick */
display: flex;
flex-direction: column;
align-items: center;
``` [0]http://codepen.io/MoOx/pen/XdVjpK |
|