在我的文件中,我有例如“margin:0px!important;”当我运行格式化程序时,它会产生“margin:0px!important;”这会在生成的CSS文件中产生验证错误。
任何人都可以帮助如何配置忽略验证错误或更改格式化程序以不在引号和“重要”之间添加空格?
更新:
正如Kheema Pandey指出的那样,我应该粘贴代码片段。
格式化之前:
div.text {
margin: 0px !important;
}
格式化后:
div.text {
margin: 0px ! important;
}