Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.test {
border: 0px;
}
.testhover:hover {
border: 1px solid #0814bf;
}
</style>
</head>
<body>
<div class="test">
A text with a disabled hover effect
</div>
<div class="test testhover">
Hover over this text
</div>
</body>
</html>