I have a table with buttons that I need to customize for selection, using CSS.
The goal is to style the buttons differently than standard checkboxes or radio buttons by using the type "button" and applying CSS/CSS3 styles.
<div class="button">
<table>
<tr>
<td>
// Code for 1-10 buttons
</td>
</tr>
<tr>
<td>
// Code for 11-20 buttons
</td>
</tr>
<tr>
<td>
// Code for 21-30 buttons
</td>
</tr>
<tr>
<td>
// Code for 31-40 buttons
</td>
</tr>
<tr>
<td>
// Code for 41-50 buttons
</td>
</tr>
<tr>
<td>
// Code for 51-60 buttons
</td>
</tr>
<tr>
<td>
// Code for 61-70 buttons
</td>
</tr>
</table>
</div>
For a live example and further reference, check out this JSFiddle link. (Note: only one button can be selected at a time in the current setup)