For instance, an anchor tag by default has specific styles such as being blue, turning purple when visited, and changing the cursor when hovered over.
So, where exactly does Chrome pull these styles from?
Could there be a Google Chrome style-sheet stored on my computer, or accessed by Chrome through a rel link containing code like :
...
a.visited {
color:purple; /* just because */
}
a.hover {
cursor:pointer;
}
... /* and many more CSS styles */
Any idea where to locate this Google Chrome style-sheet file, or online resource?
Perhaps something like : chrome://internals/styles
Or maybe something similar to :