Edit in JSFiddle

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