<input type="text" name="password_txt" id="login_password_text" class="login_field" value=""/>
so i have this field. whener ever i click on this field iam getting a yellow border around it. i dont understand why. i remover all my css and js file but still i was get it.
so i add this code to remove the yellow border:
input:focus {
outline: none;
}
so now i have no border around my input field which is what i want.
and now i want to add border red to it. so:
input:focus {
outline: none;
border: 1px solid red;
}
but i dont get a border around it. also i tried this:
input:focus {
border: 1px solid red;
}
doesnt work too.