相关疑难解决方法(0)

Visual Studio 2017禁用css格式化不必要的空格

我尝试格式化css代码时遇到问题.Visual Studio在css中给了我不必要的空间

在visual studio中格式化css代码之前:

.test-parent {
}

.test-parent .test-child {
}

.test-parent .test-child .test-child-child {
}
Run Code Online (Sandbox Code Playgroud)

在visual studio中格式化css代码之后:

.test-parent {
}

    .test-parent .test-child {
    }

        .test-parent .test-child .test-child-child {
        }
Run Code Online (Sandbox Code Playgroud)

是否可以在Visual Studio 2017中禁用不必要的空间?

visual-studio

13
推荐指数
1
解决办法
1784
查看次数

标签 统计

visual-studio ×1