如何配置 PHPStorm 的 Code Style 在 CSS 块结束前的值上加上分号


默认的设置是这样的:


 h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal
}

我现在希望在一个 CSS 代码块结束前的最后一行也加上分号,如何配置?不知为何没有找到,非常感谢!
PS:即以下效果


 h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

编辑器 phpstorm css ide intellij-idea

小泽玛丽奥 10 years, 4 months ago

Your Answer