Last active
December 5, 2018 23:55
SendGrid style-guide table with checkboxes in cells.
This file contains 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
<table class="table-wrap has-internal-checkboxes"> | |
<thead> | |
<tr> | |
<th colspan="2">Desktop Clients</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td class="list-name">Apple Mail</td> | |
<td class="checkbox-grid"> | |
<div class="input-checkbox-wrap"> | |
<input type="checkbox" id="checkbox-os-1" value="OS" checked> | |
<label class="input-checkbox-label" for="checkbox-os-1">Client <span class="input-checkbox-info">OS</span></label> | |
</div> | |
<div class="input-checkbox-wrap"> | |
<input type="checkbox" id="checkbox-os-2" value="OS" checked> | |
<label class="input-checkbox-label" for="checkbox-os-2">Client <span class="input-checkbox-info">OS</span></label> | |
</div> | |
... | |
</td> | |
</tr> | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment