Hello all,
I want to remove the borders when i focus on input element. How can i do that?
Post the entire code here.
I guess it is outline in question here. Set the ‘outline’ property to “none”:
element:focus {
outline: none;
}
@DobarBREND That was it! Thanks a lot.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.