css - Changing font from data-content -
i used code:
<div data-content="reach" class="image">
and css:
.image:before { content: attr(data-content);
so there way change font-size , font family data content?
just add css after content:
.image:before { content: attr(data-content); font-size: 42px; }
check example
Comments
Post a Comment