So if I have a HTML heading like this

<h2>A Heading</h2>

and I run Edit -> Format Document it ends up looking like this

<h2>
    A Heading</h2>

why is this? It doesn't do it to other block elements, but it does do it to other inline elements (eg <label>).

Update: To clarify, I mean why is this the default, not where are the settings to change this

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

It does it because those are its default settings. In older browsers, sometimes having the end tag of a block or inline element on a new line after the child element (effectively leaving whitespace, such as a non-breaking space or empty text node) affects how the page is rendered. I have had trouble with this before. For example, the following can have issues rendering correctly if your anchors have borders or padding:

<a>
    <img src="..." />
</a>

Sometimes there would be additional spacing at the bottom of the link. Changing it to the following removes the additional spacing:

<a><img src="..." /></a>

Basically, the goofy formatting solves some rendering issues in browsers with shoddy CSS support like IE6. If you have IE6, look at this JSFiddle I created to illustrate the issue. There's extra spacing at the bottom of the image where the anchor tags exist on their own lines.

From Scott Guthrie's blog:

If you format a selection of markup and see that a close tag hasn’t been moved to a separate line – it is because there is no space between the end of the preceding markup and the terminating tag, and as such VS is being careful not to change it to avoid changing the rendering semantics.

So as ugly as the formatting or output from the designer in Visual Studio can be, it is more likely to work in more browsers than would properly formatted markup (such as XHTML).

To change the defaults for the formatting in Visual Studio, go to:

Tools > Options > Text Editor > HTML > Format > Tag Specific Options...

Under "Default Settings", change the "Line Breaks" option to "Before and After" for both the Client and the Server "tag supports contents" options.

link|improve this answer
1  
Yeah I never understood the default html formatting settings. The majority of them are quite heinous, IMO. – Chris May 22 '09 at 0:05
Sorry, I didn't mean literally why does it do it, I mean why possible reason is there for that being the default? I can't imagine ever wanting this layout – Glenn Slaven May 22 '09 at 0:08
1  
Sometimes it's just better not to question why Microsoft does things the way they do =/. Perhaps somebody thought that it would be easier to scan along the left side of the document for the opening tag, thinking that there's really no point in being able to easily identify the closing tag. I don't know, I guess that kind makes sense, otherwise I don't have an answer for you. – Cory May 22 '09 at 0:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.