I'm working with a new WordPress theme, and evidently there is some sort of directive in a styles.css file that I am unfamiliar with and need help knowing what to change so I get what I consider more "normal" behavior.
-
In my html, I often use this kind of in-page linking:
<a href="#page-jump">Jump ahead</a>
Which then takes the visitor to this location:
<h3 id="page-jump">Continue reading here.</h3>
or sometimes I use this type of destination:
<div id="page-jump">Continue reading here.</div>
--
With Chrome (desktop), when you click the link to jump ahead, if the destination is a <div>, it outlines the complete div, as if it has a border (which it doesn't).
When using Android Chrome, you get the same outline behavior of div's.
If the link is to an <h3> tag, the color of the text in the h-tag changes (which is my bigger problem).
--
I don't get what this behavior is.
I've discovered css directives like h3:active, but that doesn't really explain what's going on here.
What is the css effect/property involved that I need to fiddle with to stop this effect?
Thanks.