When to use and when not to
A common question in #web on Freenode IRC, goes something like this:
“Should I use
‘s or tables for my layout?”
The answer is, neither.
What most people call “using
‘s” is actually, CSS-P – CSS Positioning. This is the correct way to markup a page for styling using CSS, rather than putting all the display information into the page using tables. You should always use CSS-P for styling your website, this does not mean that you should never use tables, but that you should only use tables for tabular data.
You should also never use a
when another tag will do. Think about the following examples:
Using the following CSS, the following two HTML examples display the same:
- #header {
- color: red;
- background-color: grey;
- font-size: 32px;
- }
- <div id=“header“>
- Welcome to my site!
- div>
- <h1 id=“header“>
- Welcome to my site!
- h1>
So why – you ask – does it matter which I use? Well, just looking at the two examples, the second one obviously denotes the text a 1st level header. The top one doesn’t give any information about the text contained in it.
This doesn’t mean you should never use a
, there are situations where you are styling something where you have no content (say, a drop-shadow on a paragraph which itself is marked up using
and has a different style).
I know I haven’t gone into much depth here, but thats the long and short of it as I see it. I hope that helps someone.
- Davey
Twitter
@JillyEnFuego it's where they pretend a bunch of folks survived the apocalypse and what they have to do to survive; reality style
@dshafik [11 hours ago]
@dshafik Oooh! See that's why I have to DVR things, I can't keep up with when shows come on.
@tattooedmommie [13 hours ago]
@tattooedmommie it started last night...
@dshafik [13 hours ago]
@dshafik hahahaha.. doesn't everyone?
@beth_warren [14 hours ago]
@david973 I've known her 14 years; so I'm not far behind :P
@dshafik [14 hours ago]
A common question in #web on Freenode IRC, goes something like this:
“Should I use
The answer is, neither.
What most people call “using
You should also never use a
Using the following CSS, the following two HTML examples display the same:
- #header {
- color: red;
- background-color: grey;
- font-size: 32px;
- }
- <div id=“header“>
- Welcome to my site!
- div>
- <h1 id=“header“>
- Welcome to my site!
- h1>
So why – you ask – does it matter which I use? Well, just looking at the two examples, the second one obviously denotes the text a 1st level header. The top one doesn’t give any information about the text contained in it.
This doesn’t mean you should never use a
and has a different style).
I know I haven’t gone into much depth here, but thats the long and short of it as I see it. I hope that helps someone.
- Davey
@JillyEnFuego it's where they pretend a bunch of folks survived the apocalypse and what they have to do to survive; reality style
@dshafik [11 hours ago]
@dshafik Oooh! See that's why I have to DVR things, I can't keep up with when shows come on.
@tattooedmommie [13 hours ago]
@tattooedmommie it started last night...
@dshafik [13 hours ago]
@dshafik hahahaha.. doesn't everyone?
@beth_warren [14 hours ago]
@david973 I've known her 14 years; so I'm not far behind :P
@dshafik [14 hours ago]
















