Need help adjusting the height of a bootstrap textbox.
<div class="form-group row">
<label class="col-xl-3">Posted Speed Limit (mph)</label><input type="text" class="col-xl-1 ps" autocomplete="off" id="sl" onkeydown="return keyval(event)" onkeyup="return valkey(event)" name="num3" required="required"><span id="rspan" class="rspan"><span>⚠</span>Enter a numeric value > 0 and ≤ 90</span></input>
</div>
Here is the CSS for the class = "ps":
.ps{
min-height: 2%;
}
I'm struggling to adjust the height of the textbox. The width can be modified but not the height. Any suggestions?