Edit in JSFiddle

<button>HOVER OVER ME</button>
<div id="content">
  and the content will show.
</div>
div#content {
  display: none;
}
button:hover + div#content {
  display: block;
}