Search code examples
csscss-selectors

How to select all checkboxes using CSS selectors?


Selecting input affects every input element. Is there a way to select only checkboxes without applying a class to each checkbox element?


Solution

  • With CSS 2 you can do this:

    input[type='checkbox'] { ... }
    

    This should be pretty widely supported by now. See support for browsers