Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Markup for custom radio buttons.
<form id="styled">
<input type="radio" name="emotion" id="happy" />
<label for="happy">
<img alt="happy" src="http://i.imgur.com/zm8fp.png" />
<p>happy</p>
</label>
<input type="radio" name="emotion" id="sad" />
<label for="sad">
<img alt="sad" src="http://i.imgur.com/sKhy9.png" />
<p>sad</p>
</label>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment