Is there a collection of templates (HTML + CSS) for ASP.NET MVC3 Views?

I was wondering if there is a set of templates to use (potentially) any MVC View. I mean a set of predefined HTML tags (possibly only DIVs, scalding as wrappers) with id and class attributes , among others, which in combination with CSS displays a complete web page. For example, the template ships with ASP.NET MVC3 in VS2010. Then you can select a specific template (i.e., One with a table in the center of the page instead of an image) and build your application.

I need this because I absolutely hate CSS (or their HTML app is better), because I never get the size and position I want!

Thanks in advance

Francesco

+5
source share
1 answer

http://mvccontribgallery.codeplex.com/

Steps to love CSS:

div.myClass { width: 30px; margin: 2px 0 0 4px; }
div.myClass ul { list-style: none; }
  • Write it more carefully, as indicated above:
  • Debugging / Development only in Google Chrome, Firefox or Safari. Use the brilliant CSS built-in editor / debugger in Chrome or Firebug in Firefox.
  • Use only standards compliant CSS. This is not because I'm a standard addict, but because it’s easier to find help in the CSS / HTML community.
  • When the project is nearing the stage, review it in any version of IE where you need it and add CSS to fix any problems you encounter: http://css-tricks.com/how-to-create-an-ie- only-stylesheet /
+5
source

All Articles