A common pattern I come across is the following:
form.request input {
/* ... */
}
form.request input[type=\"text\"] {
/* ... */
}
form.request sele
No, you cannot. But if you want to do less typing and make the stylesheets more readable, consider using SCSS.
Use LESS, which would let you write
form.request {
input { /* ... */ }
input[type="text"] { /* ... */ }
select { /* ... */ }
br { /* ... */ }
}
or even
form.request {
input {
/* ... */
&[type="text"] { /* ... */ }
}
select { /* ... */ }
br { /* ... */ }
}