• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Quick and easy HTML question

Originally posted by: screw3d
Don't always assume that it's presentation simply because it's a CSS attribute. Depending on the context, <del> could be the correct tag to use.

Straight from the horse's mouth
No! CSS is teh rUl3! You should also not use <h#> when you can put them in <span>s and write your own css!

(kidding, of course).
 
Originally posted by: kamper
Originally posted by: screw3d
Don't always assume that it's presentation simply because it's a CSS attribute. Depending on the context, <del> could be the correct tag to use.

Straight from the horse's mouth
No! CSS is teh rUl3! You should also not use <h#> when you can put them in <span>s and write your own css!

(kidding, of course).

The only tags you ever need are span and div!
 
Originally posted by: igowerf
Originally posted by: kamper
Originally posted by: screw3d
Don't always assume that it's presentation simply because it's a CSS attribute. Depending on the context, <del> could be the correct tag to use.

Straight from the horse's mouth
No! CSS is teh rUl3! You should also not use <h#> when you can put them in <span>s and write your own css!

(kidding, of course).

The only tags you ever need are span and div!

You don't even need span, just use div with "display: inline"
 
Originally posted by: igowerf
Originally posted by: kamper
Originally posted by: screw3d
Don't always assume that it's presentation simply because it's a CSS attribute. Depending on the context, <del> could be the correct tag to use.

Straight from the horse's mouth
No! CSS is teh rUl3! You should also not use <h#> when you can put them in <span>s and write your own css!

(kidding, of course).

The only tags you ever need are span and div!
Well, stuff like <html> <head> and <body> comes in handy from time to time. As well as some way to bring a stylesheet in.
 
Originally posted by: GotGoose
No need to link an external style sheet, just use inline styles

div style=""

I'm working on a client's site that someone else had built. It has hundreds of HTML pages and ALL of them are done using divs, inline styles, and absolute positioning. Literally, every element is placed using an absolutely positioned div tag. It's a nightmare, but regex's saved me from doing tons of really tedious work.
 
Originally posted by: GotGoose
No need to link an external style sheet, just use inline styles

div style=""
That completely defeats the purpose of seperating content from presentation. Plus you can't assign things by class.
 
Back
Top