标签: css
我使用了代码:
<div data-content="Reach" class="image">
和css:
.image:before { content: attr(data-content);
那么有没有办法从数据内容中更改字体大小和字体系列?
答案 0 :(得分:0)
只需在内容后添加css:
.image:before { content: attr(data-content); font-size: 42px; }
选中 example