I have a problem when I try to format css code. Visual studio gives me extra spaces in css
Before formatting css code in visual studio:
.test-parent {
}
.test-parent .test-child {
}
.test-parent .test-child .test-child-child {
}
After formatting the css code in visual studio:
.test-parent {
}
.test-parent .test-child {
}
.test-parent .test-child .test-child-child {
}
Is it possible to disable extra spaces in visual studio 2017?
source
share