In a larger application, we'd like to shrink many elements of a single form quickpost-form
<div id="qp-form">
There are several elements of the form that need to have smaller font. For example, text, input, input-group, textarea. At first I tried this .css:
#qp-form label, text, input, input-group, textarea
This works, but actually changed the sizes of these fields across forms. Realized that the comma foregoes inheritance, so instead tried the following based on this answer.
#qp-form > label, #qp-form > text, #qp-form > input
But this did not correctly change the font-sizes (they were not applied).
What is the most succinct/typical way to change various inputs across a single form? I've also tried the following:
.qp-form label text input input-group select textarea