There can be only one css stylesheet per media
I thought it was a good idea to specify a media in my stylesheet link :
<link rel="stylesheet" href="/stylesheets/tags.css" type="text/css" name="tags stylesheet" media="screen" />
but when I tried to add another stylesheet, it was ignored !
<link rel="stylesheet" href="/stylesheets/common.css" type="text/css" name="main stylesheet" media="screen" />
<link rel="stylesheet" href="/stylesheets/tags.css" type="text/css" name="tags stylesheet" media="screen" />
It worked by removing the media attribute. It seems that only one stylesheet per media is taken into account.
Leave a comment