In Visual Studio 2013, when I format my CSS code ( Ctrl + K + F ), sometimes my CSS properties are inserted into the hierarchy.
For example:
.a { color:red; } .a .b {color:blue; }
becomes:
.a { color:red; } .a .b { color:blue; }
When I would prefer:
.a { color:red; } .a .b { color:blue; }
Is there a way to modify Visual Studio to prevent this indentation?
css visual-studio visual-studio-2013
Curt
source share