How to specify a specific css file in METEOR -


meteor gathers css single file , doesn't allow css specified print media.

i able specific css file should not include in bundle of css , include :

<link rel="stylesheet" href="print-only.css" type="text/css" media="print" /> 

in meteor page.

you can declare css media types inside css file. don't need several different files that.

for example, http://www.w3schools.com/css/css_mediatypes.asp:

@media screen {     p {         font-family: verdana, sans-serif;         font-size: 17px;     } }  @media print {     p {         font-family: georgia, serif;         font-size: 14px;         color: blue;     } } 

Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -