[developer@test css]# vi web.css
#name-input-box:focus {
outline: none;
}
...
In the above code, #name-input-box is an element id and :focus is a selector belonging to said element id, which can let you style the element whenever focused.
[developer@test css]# vi web.css
#name-input-box:focus {
outline: none;
}
...