Hi,
Here is a Quick Tip in order to Change Visual Studio CSS Editor Default Format Settings
Visual Studio Allow us to choose between 3 different CSS Formats :
- Compact
- Semi-Expanded
- Expanded
You can change this Settings in Tools > Options > Text Editor > CSS > Format
Compact Format Sample
a:link { color: #034af3; text-decoration: underline; }
a:visited { color: #505abc; }
a:hover { color: #1d60ff; text-decoration: none; }
a:active { color: #12eb87; }
Semi-Expanded Format Sample
a:link {
color: #034af3;
text-decoration: underline;
}
a:visited {
color: #505abc;
}
a:hover {
color: #1d60ff;
text-decoration: none;
}
a:active {
color: #12eb87;
}
Expanded Format Sample
a:link
{
color: #034af3;
text-decoration: underline;
}
a:visited
{
color: #505abc;
}
a:hover
{
color: #1d60ff;
text-decoration: none;
}
a:active
{
color: #12eb87;
}
Hope this help’s.
Views(2467)

