Skip to content

Instantly share code, notes, and snippets.

@pguerrant
Created June 27, 2013 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pguerrant/5880233 to your computer and use it in GitHub Desktop.
Save pguerrant/5880233 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<style>
div {
display: inline-block;
width: 30px;
height: 30px;
background-color: red;
}
</style>
<label>Foo:</label><input type="button" role="checkbox" aria-checked="false"/>
<br/>
<label>Bar:</label><div tabIndex="0" role="checkbox" aria-checked="false"></div>
<br/>
<label>Baz:</label><input type="button" role="checkbox" aria-checked="true"/>
<br/>
<label>Qux:</label><div tabIndex="0" role="checkbox" aria-checked="true"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment