web 2.0

How-To Change Visual Studio CSS Editor Default Format Settings

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

image

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)

kick it on DotNetKicks.com

Share/Save/Bookmark Subscribe

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

Tips | Visual Studio

Comments

Add comment


 

biuquote
Loading



Technorati Profile