Currently, I am trying to change the color of an input border bottom when the input is not in focus. Below is my HTML code:
<input type="number" id="nc" name="days" class="numero" placeholder="" min="0"><br />
Here is the CSS code I have tried:
.numero {
border-bottom-color: red;
}
Unfortunately, this approach does not seem to be working as intended. Any suggestions or assistance would be greatly appreciated!