Which of the following is the correct way to change the color of a link when it is focused?
a:hover { color: blue; }
a:active { color: blue; }
a:focus { color: blue; }
a { color: blue; }