从数据内容更改字体

时间:2014-05-17 13:44:50

标签: css

我使用了代码:

<div data-content="Reach" class="image">

和css:

.image:before {
        content: attr(data-content);

那么有没有办法从数据内容中更改字体大小和字体系列?

1 个答案:

答案 0 :(得分:0)

只需在内容后添加css:

.image:before {
   content: attr(data-content);
   font-size: 42px;
}

选中 example