html5 - How to make Visual Studio 2010 render HTML with respect to carriage return -


i have put in master page :

<!doctype html> <html lang="en"> <head runat="server">     <meta charset="utf-8" />     <title></title>     <link href="~/styles/site.css" rel="stylesheet" type="text/css" />     <asp:contentplaceholder id="headcontent" runat="server">     </asp:contentplaceholder> </head> 

in browser source got html doesn't respect carriage return of masterpage between <meta> , <title>, not formatted beautifully :

<!doctype html> <html lang="en"> <head><meta charset="utf-8" /><title>     home page </title><link href="styles/site.css" rel="stylesheet" type="text/css" /> </head> 

how make visual studio 2010 render html respect carriage return


Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -