Skip to content

Instantly share code, notes, and snippets.

@linmic
Last active September 6, 2016 06:54
Show Gist options
  • Save linmic/d2183076e5f8fa4fc2b0f0d220cf03ae to your computer and use it in GitHub Desktop.
Save linmic/d2183076e5f8fa4fc2b0f0d220cf03ae to your computer and use it in GitHub Desktop.
/*
<figure>
<img src={1x_image_url} srcset=`${1x_image_url} 1x, ${2x_image_url} 2x, ${3x_image_url} 3x` />
<figcaption>{figure caption}</figcaption>
</figure>
*/
figure {
display: block;
max-width: 100%;
img {
display: block;
width: 100%;
}
figcaption {
font-size: 15px;
line-height: 21px;
display: block;
text-align: left;
padding: 0 3px;
margin-top: 5px;
color: #828282;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment