Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
294 views
in Technique[技术] by (71.8m points)

请教前端大神,有没有类似的工具。

有一个a.html,引入了一个common.css。

这个common.css有可能不只是被a.html使用,还会有b.html,c.html都在用这个css文件。

现在想找到common.css中把a.html用到的css都提出来,单独的放在a.html的里面,写成内部样式。

请教一个,有没有这样的工具。谢谢各位了、

觉得还是应该把需求说详细点,补充一下吧:

我有一个画面,要做成邮件模板发给用户,这个页面做的时候比较复杂,引入了bootstrap等各种外部样式,众所周知,邮件模板是不允许外部引用css的,所以我要把用到的css从bootstrap这些插件里拿出来,写在当前页面里弄成内部样式。

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

你为什么不把通用样式写在common.css,把a.html的样式单独写a.css,把b.html的私有样式单独写b.css呢?
很明显这样管理才比较方便吧。

如果你使用less或sass之类的预处理器器,分模块写样式就更加方便了。

比如:sass可以使用@import把其他模块引入,写一个_common.scss作为基础样式,需要的地方引入即可。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...