Google isn't offering much help, probably because I don't know how to phrase my question. Is there a way to specify the CSS class for a particular type of elements through <style>? For example, if I want all the checkboxes in my div to have a "checkbox-inline" class (yes, that's Bootstrap), can't I do something like:
<style>
input[type=checkbox]
{
class: checkbox-inline;
}
</style>
This doesn't seem to work. There is no "class" attribute (at least not shown by Intellisense).
input[type=checkbox] { /* all css properties of class checkbox-inline can go here */ }