格式化CSS时防止缩进

时间:2014-08-20 14:11:34

标签: css visual-studio visual-studio-2013

在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以防止这种缩进?

1 个答案:

答案 0 :(得分:40)

是的,您可以从“工具”,“选项”菜单中为此设置首选项。

向下钻取Text EditorCSS,在Advanced下,关闭Hierarchical Indentation

enter image description here