CSS-Only Show Covering DIV on Hover Using "after"

by Matthew Schenker

HTML

<p hover-title="Now You're Hovering!">Before Hovering</p>

CSS

p {
  background: pink;
  position: relative;
  height: 80px;
}

p:hover:after {
  position: absolute;
  content: attr(hover-title);
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: green;
  color: white;
  opacity: 0.6;
  padding-top: 30px;
  text-align: center;
}