You could make the color transparent and when hovering with color. Here is an example:
* {
margin: 0;
padding: 0;
}
p {
height: 300px;
width: 300px;
color: transparent;
transition: all 1s;
}
p:hover {
color: #000;
background: #00d5ff;
}
<h3>Hover below</h3>
<p>Hello</p>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…