Im trying to reduce the vertical padding on the text form inputs. Specifically my html is:
<div class="form-group">
<label...
<input...
</div>
In my css, when I do the padding mod:
.form-group {
padding-bottom:1px;
}
it doesn't take (crossed in in the chrome dev tools)
However when i do
div.form-group{
padding-bottom:1px;
}
it takes. Why is that?