我有一个巨大的 CSS 文件,其中没有回车符。
但我需要在结束标记后添加回车符}。
以下是一个示例:
#mvt-nascar #mvt-social li a.google-plus{background-position:-708px -460px}body#dispatcher.index #mvt-nascar #mvt-social li a.the-hub{background-position:-746px -460px}body#dispatcher.index #mvt-nascar .certifications{float:left;margin:0;border-left:1px solid #aaa}body#dispatcher.index #mvt-nascar .certifications ul li{float:left;margin:0 0 0 12px}
这就像一个巨大的 CSS 文件。我如何在 } 符号后添加回车符
我尝试使用 /n 进行搜索/替换,但它只是删除了符号}。
有人能给出什么建议吗?
答案1
您可以简单地}
用替换}\n
。这将保留花括号并在每个花括号后添加换行符。