javascript - Multiple css files with same filename -
i'm trying make this work mvc3 application. looks javascript source working fine. appends whole page(including head , body) bottom of original , tries use css file. first time file declared @ top of page attribute (media='print'). , doesn't apply changes on page. second time plugin declares below, attribute (media='all') , moment should apply changes, show print preview , show buttons. nothing happens, until change manually attribute 'media' 'print' 'all' @ top of page. looks first declaration blocking second one. can't use css file time, because need hide elements in print mode. suggestions? add @media rule in css. @media rule lets group css rules media type in 1 css file: body { color:#444; background-color:#fff; } @media screen, projection { body { background-image:url(background.png); } } @media print { body { color:#000; } } @media handheld { body { color:#0f6517; } }