Skip to content

Instantly share code, notes, and snippets.

@northk
Last active December 29, 2015 23:19
Show Gist options
  • Save northk/7741966 to your computer and use it in GitHub Desktop.
Save northk/7741966 to your computer and use it in GitHub Desktop.
HTML5 Figure and Figcaption example
<img class="caption" src="http://placehold.it/150x50"
title="This is my caption"
alt="A grey placeholder image" />
// wait until images have all loaded so we can properly get their width
$(window).load(function(){
$('img.caption').captionate();
});
<figure class="caption border">
<img src="http://placehold.it/150x50"
title="This is my caption"
alt="A grey placeholder image" />
<figcaption>This is my caption</figcaption>
</figure>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment