在Visual Studio 2013中,当我格式化CSS代码( Ctrl + K + F )时,它有时会将我的CSS属性缩进为层次结构。
例如:
.a { color:red; }
.a .b {color:blue; }
变为:
.a {
color:red;
}
.a .b {
color:blue;
}
我希望:
.a {
color:red;
}
.a .b {
color:blue;
}
有没有办法修改Visual Studio以防止这种缩进?
答案 0 :(得分:40)
是的,您可以从“工具”,“选项”菜单中为此设置首选项。
向下钻取Text Editor
至CSS
,在Advanced
下,关闭Hierarchical Indentation
: