在 Sublime Text 2 中一次突出显示多个语法?
我有一个 CSS 文件,大约一半是 CSS,一半是 PHP。有没有办法同时对两者应用语法突出显示?
I have a CSS file that is about half CSS and half PHP. Is there a way to apply syntax highlighting to both at once?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的答案是不要在 CSS 中使用大量的 PHP。在包含 css 文件的文件中完成处理,或者仅使用 str_replace();让 PHP 在 CSS 中生成变量。
The simple answer would be don't use extensive PHP in CSS. Have your processing done in the file that includes the css file, or just use str_replace(); for having PHP generated variables in your CSS.