Hover CSS Selector

by Raj kumar

HTML

<div id="profile">
    <input type="button" value="Change image" />
</div>

CSS

#profile {
     min-height: 200px;
     width: 150px;
     background-color:DarkTurquoise;
 }
 #profile input[type="button"] {
     display: none;
 }
 #profile:hover > input[type="button"] {
     display: block;
 }