The :focus pseudo-class is applied to controls when they receive focus. A use could be to draw attention to the current field when a user tabs through controls on a form.
The CSS rule to style a control that has focus is:
.pc-focus {
border : 1px solid green;
}