Big Stories on Web Design this Month

Avatar of Chris Coyier
Chris Coyier on

This is kind of a Links of Interest post, but I wanted to highlight these things extra-specially:

A Preview of HTML 5

html5.png
I know everyone and their mother is going to be linking to this article, and I also know this is potentially years away, but I can’t help but get excited thinking about how sweet HTML 5 is going to be in production. For example:

<body>
  <header>...</header>
  <nav>...</nav>
  <article>
    <section>
      ...
    </section>
  </article>
  <aside>...</aside>
  <footer>...</footer>
</body>

How’s that for semantic awesomeness? Real tags for your header. Real tags for navigation. Sidebars properly designated as “aside”. Good stuff. If you would like to keep updated on the goings-on of HTML 5 for yourself, you can always check out the gignormous working draft.

24 Ways (to impress your friends)

24ways.png
24 ways is like an end-of-the-year party for web professionals. It’s a place we all can get together and watch some pseudo-celebrity guest speakers hand out fabulous door prizes in the form of interesting tutorials. My favorites so far:

Eric Meyer on the Future of CSS

edge.png

Adobe Egde has an interview with Eric Meyer on the future of CSS.

JL: I understand that CSS 3 is currently under discussion and development by the W3C. Can you give us a peek at what designers can expect in terms of new properties and selectors?
EM: You understand incorrectly. What’s under discussion and development is various CSS modules, each advancing at its own pace.

Eric makes the important point, that I have failed to make clear on this site, that there really is no “CSS 3”, and there probably will never be. It’s a bummer in some regards, since it may segregate browsers even more than they already are with different browsers supporting different new aspects of CSS. It’s positive in other ways, mostly that we might see some of these new features sooner than later in some browsers. I think we’ll see a lot more forward-enhancement stuff, as many of them will be pretty easy to code and degrade easily.