<style>
.hide {font-size:30pt;color:red;}
.hide:active {visibility:hidden;}
.hide:focus {visibility:hidden;}
.hide:visited {visibility:hidden;}
</style>
<a name="done"></a>
<a href="#done" class="hide"><div class="hide">click to hide this</div></a>
Additional testing, transition, transform.
<style> .test {
width: 90%;
height: 90px;
background: orange;
margin: 20px;
border-radius: 10px 10px 80px 10px;
transition: all 3s ease-in-out;}
.test:hover {
width: 0px;
height: 0px;
background: red;} </style>
<div class="test">TRANSFORM</div>