有没有办法将 html 文档中的硬编码样式提取到外部 css 文件?如果没有,您是否知道如何执行此操作?你以前做过吗?
示例,来自:
<div style="background-color: red">
<a style="font-weight: bold"></a>
</div>
至
<div id='st-01'>
<a id='st-02'><a/>
</div>
#st-01 { background-color: red }
#st-02 { font-weight: bold }