Created
May 7, 2014 06:26
-
-
Save MoritzBuetzer/4c89d9da1e15745cf2b0 to your computer and use it in GitHub Desktop.
figcaption restricted to the width of a responsive image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
figure { | |
padding: 5px; | |
display: table; | |
} | |
figure img { | |
display: block; | |
} | |
figcaption { | |
display: table-caption; | |
caption-side: bottom; | |
} |
Now try to get the caption centered.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
aah this is good