Hi,
I really hope I'm not hitting a frequently asked question here, because
I think almost every author must have made that decision. Anyway, here
goes:
Would it be better to write one global stylesheet, then write
specializations for media that need special treatment:
<link ... media="all">
<link ... media="print">
<link ... media="aural">
This might guarantee that a page looks "good" on all media the author
provided stylesheets for, but it might mess up the page on other media
types, possibly introduced at some later date.
Or would it be better to write no global stylesheet but only
stylesheets for supported media
<link ... media="screen">
<link ... media="print">
<link ... media="aural">
This seems safer by not trying to render fancy design on other media
types but these "unsupporte d" media would then render rather dull
pages.
What do you think?
Wolf
I really hope I'm not hitting a frequently asked question here, because
I think almost every author must have made that decision. Anyway, here
goes:
Would it be better to write one global stylesheet, then write
specializations for media that need special treatment:
<link ... media="all">
<link ... media="print">
<link ... media="aural">
This might guarantee that a page looks "good" on all media the author
provided stylesheets for, but it might mess up the page on other media
types, possibly introduced at some later date.
Or would it be better to write no global stylesheet but only
stylesheets for supported media
<link ... media="screen">
<link ... media="print">
<link ... media="aural">
This seems safer by not trying to render fancy design on other media
types but these "unsupporte d" media would then render rather dull
pages.
What do you think?
Wolf
Comment