0 votes
by (190 points)
When hovering over a word i want it to disappear?

1 Answer

+1 vote
by (63.1k points)

In passage: 

<span class="invis-hover">spooooooky</span>

In stylesheet: 

.invis-hover:hover {
    color: rgba(0, 0, 0, 0);
}

Note that hover effects are not mobile-friendly.

...