Get your own website Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<head>
<style>
p {
  display: none;
  background-color: yellow;
  padding: 20px;
}
div:hover p {
  display: block;
}
</style>
</head>
<body>
<div>Hover over this div element to show the p element
  <p>Tada! Here I am!</p>
</div>
</body>
</html>