I'm working with a confirmation code that is made up of 6 digits. I've noticed that when I click on an input field, it becomes focused and underlined in blue.
However, as soon as I start typing in the next input field, the blue underline disappears from the first field.
What I really want is for the first input field to stay underlined even after I move on to the second input field, as well as for the other four input fields.
To achieve this, I have utilized the focus selector:
input[type='tel'].InputField:focus {border: 0 none; border-bottom: 2px solid blue; border-bottom-left-radius: 0; border-bottom-right-radius: 0; outline: none;}