Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I like building stuff, and currently I'm getting into building websites using ASP.NET. I (think I) know how to code, and how to make that code look elegant. What I (know I) don't know is how to make things look pretty... for the users.

I was just introduced to css Zen garden, and oh my gawd does that look pretty. It looks pretty in (at time of writing) 210 ways, and all thanks to a clean separation of content and layout/graphical-design (Content being the HTML, and layout/graphical-design being the CSS of course). Go ahead, take a look :-)

I'm planning to ask a CSS guru to create a stylesheet for my website, but I want to make things as easy as possible for him. (And any future CSS guru's I might approach in the future). I don't know any CSS experts, that's why I'm asking here ;-)

For example I've noticed in HTML of the css Zen garden that most <div> and <p> tags have an "id" or "class" attribute to help the CSS creators.

So what I'd like to have is some kind of list with best practises for writing HTML, so that it is made very easy to (let someone) create a stylesheet for that HTML. Examples are always welcome!

share|improve this question
I doubt it's strictly due to the "clean separation of content and layout" that is responsible for its good aesthetics. – Kirk Woll Mar 21 '11 at 19:10
1  
HTML CSS and JavaScript are a nicely bundled MVC framework. HTML is the model, all your data belongs there, with some nice hooks for the view and controller. CSS is the View, all your styles belong there, possibly with some free-floating styles that can be applied by the controller. JavaScript is the Controller, all your interactions belong there, making use of hooks into the model and view (classes & ID's). – zzzzBov Mar 21 '11 at 19:27
@Kirk Woll, you're absolutely right! Let me clarify what I meant: the fact that's it's different in 210 ways is possible due to the separation and the HTML markup. – Mr Happy Mar 21 '11 at 20:49
I personally think this is a good topic. I vote to transfer this post to programmers.stackexchange.com :) – Carls Jr. Mar 24 '11 at 2:28
@Ian - Do I have to recreate this question on programmers exchange or something? – Mr Happy Mar 24 '11 at 21:37
show 1 more comment

closed as off topic by Bill the Lizard Mar 24 '11 at 2:23

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 3 down vote accepted

This is a subjective question, as there isn't a single best answer, but I think it's a good subjective question. I personally prefer a setup like so:

html
 head
  meta
  title
  link/style
  script
 body
  div#page
   div#page-inner
    header#header
     div#header-inner
      img#logo
      (strong|h1)#site-name
      p#slogan
    nav#nav
     div#nav-inner
      ul
       li>a
       ...
    div#wrapper
     div#wrapper-inner
      div#content
       div#content-inner
        article.(node|post|entry)
         header
          (h1-6)
         div
         footer
         div.comments
        ...more content...
      div#sidebar
       div#sidebar-inner
        ...sidebar content...
    footer#footer
     div#footer-inner
      ...footer content...

The reason is that there are some well defined regions (header, nav, wrapper, footer) which can be easily turned into a large variety of different formats: fixed columns, fluid columns, sticky footers, etc.

share|improve this answer
Allright, this is something I can work with. Thanks! – Mr Happy Mar 21 '11 at 21:00
1  
@Mr Happy - I think you accepted too quickly! This could have become a nice resource for HTML best practices. – Richard JP Le Guen Mar 21 '11 at 22:00
@LeguRi - Hmm maybe you're right. I'll unaccept this one for a few days (don't worry @zzzzBov, you're still prime candidate ;-) ) – Mr Happy Mar 22 '11 at 6:42
@zzzzBov - Should I use HTML tables, (for tabular data! not lay-out ofc.) or something else like nested (un)ordered lists? If so, should they be decorated with something special? (Like different classes for odd rows) – Mr Happy Mar 22 '11 at 6:46
@Mr Happy, i think you answered your own question there. tabular data belongs in tables. When in doubt, add more classes. You may want to make a formalized list of classes you use, and what circumstances they're used in. I tend to end up with classes like class="node node-even node-0 node-event node-event-0 node-event-even" but that's because I tend to use CMSs to do that for me. – zzzzBov Mar 22 '11 at 14:33
show 2 more comments

My personal advice is to read you HTML! Seriously; if your HTML is particularly difficult to read - indentation aside - there's something wrong with it. I'm not saying it should be Dr Seuss easy to read, but it shouldn't be impossible to read your HTML.

Also, never use <span> or <div> without either class or id. I know, I know; The Zen Garden does use <span> without class or id but they do it very consistently; all text is in a <span> element, and that's about the one exception I can think of.

share|improve this answer

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