ASP.NET MVC 2 Project.I want the links to the view vertically aligned. Should I add br or \n something?Thanks.\[code\] <div class="links"> <%=Html.ActionLink("Home", "Index", "Home") %> <%=Html.ActionLink("About", "About", "Home") %> </div>\[/code\]For instance.\[code\] <div class="links"> <br /> <br /> <%=Html.ActionLink("Home", "Index", "Home") %> <br /> <br /> <%=Html.ActionLink("About", "About", "Home") %> </div>\[/code\]