搜索

首页  >  问答  >  正文

css - 有没有插件可以把样式表里的样式直接输出到对应元素到style上

求这样到一个插件,就是写好样式输出到对应元素到style上

eg:

<style>
.foobar { background: #fff; }
</style>
<p id="a" class="foobar"></p>
<p id="b" class="foobar"></p>

<!-- 转换为 ↓↓↓ -->

<p id="a" class="foobar" style="background: #fff;"></p>
<p id="b" class="foobar" style="background: #fff;"></p>
学习ing学习ing2715 天前825

全部回复(2)我来回复

  • 曾经蜡笔没有小新

    曾经蜡笔没有小新2017-06-24 09:45:08

    不知道你为什么要这样做、使用css是为了让浏览器缓存和更好的维护、输出到style中反而增加了这些问题

    回复
    0
  • 欧阳克

    欧阳克2017-06-24 09:45:08

    自己找到了
    https://github.com/jonkemp/gu...

    回复
    0
  • 取消回复