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

Popular posts from this blog

how to proxy from https to http with lighttpd -

android - Automated my builds -

python - Flask migration error -