Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<style>
a:hover { color: rgb(0, 86, 179); }
.d-relative { position: relative; }
.d-inline { display: inline;}
.d-flex { display: flex; }
</style>
</head>
<body>
<div class="d-flex">
<div>
<div class="d-inline d-relative">
<a href="#">
--
</a>
<div style="position: absolute; transform: translate(0px, 160px);">
<a style="color: rgb(0, 86, 179);" href="#">i vanish on-hover in Firefox</a>
</div>
</div>
</div>
</div>
</body></html>