Originally posted by: OmahaTaz
from "http://www.santafe.edu/~nelson/tools/keybindings.html"
html-strikethru <s></s>
Originally posted by: Acanthus
Originally posted by: OmahaTaz
from "http://www.santafe.edu/~nelson/tools/keybindings.html"
html-strikethru <s></s>
thank you very much!!
Just for the sake of correctness, <s> was deprecated in 4.01 and isn't valid xhtml. <del> is the proper alternative.Originally posted by: OmahaTaz
from "http://www.santafe.edu/~nelson/tools/keybindings.html"
html-strikethru <s></s>
Originally posted by: Kyteland
Use the text-decoration property in CSS. Line-through is presentation, not content.
Originally posted by: kamper
Just for the sake of correctness, <s> was deprecated in 4.01 and isn't valid xhtml. <del> is the proper alternative.Originally posted by: OmahaTaz
from "http://www.santafe.edu/~nelson/tools/keybindings.html"
html-strikethru <s></s>
I'm guessing the validator would pass the page but give you a warning.Originally posted by: igowerf
Originally posted by: kamper
Just for the sake of correctness, <s> was deprecated in 4.01 and isn't valid xhtml. <del> is the proper alternative.Originally posted by: OmahaTaz
from "http://www.santafe.edu/~nelson/tools/keybindings.html"
html-strikethru <s></s>
Does that mean we would need to use <del> for a valid HTML 4.01 document?
No! CSS is teh rUl3! You should also not use <h#> when you can put them in <span>s and write your own css!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
Originally posted by: kamper
No! CSS is teh rUl3! You should also not use <h#> when you can put them in <span>s and write your own css!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
(kidding, of course).
Originally posted by: igowerf
Originally posted by: kamper
No! CSS is teh rUl3! You should also not use <h#> when you can put them in <span>s and write your own css!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
(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: igowerf
Originally posted by: kamper
No! CSS is teh rUl3! You should also not use <h#> when you can put them in <span>s and write your own css!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
(kidding, of course).
The only tags you ever need are span and div!
Originally posted by: GotGoose
No need to link an external style sheet, just use inline styles
div style=""
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.Originally posted by: GotGoose
No need to link an external style sheet, just use inline styles
div style=""