Tagged Questions
5
votes
4answers
11k views
CSS media type: How to load CSS for mobile?
With this code:
<link rel="stylesheet" type="text/css" href="media/css/mobile.css" media="handheld"/>
<link rel="stylesheet" type="text/css" href="media/css/screen.css" ...
1
vote
1answer
160 views
Setting CSS Media Type Inline
I am producing a standalone HTML document under the constraint that the document has to be exactly one file. I would like to use CSS to make sure that links in the document are visible and ...