Data attribute content in CSS

by Anthony Fernando Torres Detquizan

HTML

<div class="exmaple" data-content="Some content goes here."></div>

CSS

.exmaple:before {
	content: attr(data-content);
}