adikahorvath
2/10/2016 - 9:11 PM

pseudo css title

pseudo css title

div {
	position: relative;
	
	&:hover {
	  
		&:after {
			background: #000;
			color: #fff;
			content: attr(data-title);
			padding: 7px;
			text-align: center;
			position: absolute;
			top: 100%;
			left: 50%;
			width: 100px;
			margin-left: -50px;
		}
		
	}
}
<div data-title="Title"></div>