EE // 29184956
by ChrisStanyon
HTML
<a href='somewhere' class='ignoreComputer'>Show div</a>
<div class="ignoreComputerDiv">
Hello
</div>
CSS
.ignoreComputerDiv {
display: none;
}
.ignoreComputer:hover + .ignoreComputerDiv {
background-color: yellow;
display: block;
}