I have a checkbox below:
foreach($options as $indivOption) {
   echo '<input type="checkbox" name="options[]" id="option-' . $indivOption . 
        '" value="' . $indivOption . '" /><label for="option-' . $indivOption . 
        '">' . $indivOption . '</label>';
}
My question is simply how to convert a checkbox into looking like a button. I want the design to work on all browsers and work on all screen sizes but does anybody know how to do this?
 
     
     
    