如何使用WebStorm清理CSS中的代码

时间:2019-03-26 13:06:57

标签: css webstorm

有什么方法可以清除WebStorm上的代码?

我的意思是这样

干净之前

.container {
    position: absolute;
    background-color: #1e1939;
    width: 100%;
    top: 50%;
}

清洁后

.container {
    width: 100%;
    background-color: #1e1939;
    position: absolute;
    top: 50%;
}

如果您使用Android Studio,则按XML中的 Ctrl + Shift + Alt 时,您会理解我。

1 个答案:

答案 0 :(得分:1)

您可以使用Code Style CSS选项为CSS文件配置格式设置选项,请查看:

https://www.jetbrains.com/help/webstorm/settings-code-style-css.html

看看“安排”部分。

快捷方式: Ctrl + Alt + S