In Safari with the new parser, the following rule matches the <a> even
when :hover is not set. Can someone confirm if this happens on the
KHTML HEAD?
<html>
<head>
<style>
.links > a:link:hover { border: 10px solid red }
</style>
</head>
<body>
<div class="links">
<a href="foo.html">Hello</a>
</div>
This example is from the intro page of meyerweb's css/edge.
dave