I have a navigation made from divs. When you click on a div, the requested page is loaded into another div.
My problem now is, that safari and chrome are making an ugly border around any div i click.
How does one get rid of this border?
I've already tried
*, *:focus, *::-moz-focus-inner, div, div:focus, div::-moz-focus-inner {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    -webkit-overflow-scrolling: touch;
}
But it does not work...

 
     
    