The chrome browser by default adds an yellow border around elements such as active fields, selected divs etc. You can try the following CSS to get rid of this behavior.
CSS:
*:focus {
outline: none;
}
Please have a look into this article on Override Chrome's Automatic Border Around Active Fields Using CSS.