css hover

by Rich Costello

HTML

<div class="textone">Hover over me!</div>


<div class="device1">
<div class="circleone">Stuff shown on hover</div>
</div>

CSS

.device1{
    display: none;
}
    
div.textone:hover + .device1 {
    display: block;
}