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);
}
by Anthony Fernando Torres Detquizan
<div class="exmaple" data-content="Some content goes here."></div>
.exmaple:before {
content: attr(data-content);
}