<link rel="stylesheet" type="text/css" href="index.css" />
<link rel="stylesheet" href="handheld.css" type="text/css" media='screen and (max-device-width: 480px)'/>
Within my HTML document, I include these two lines. The first line refers to my standard style sheet, while the second line pertains to my mobile style sheet, which is activated when a mobile device is detected by the browser. These two stylesheets are both loaded simultaneously. Is there a way to counteract the impact of index.css
whenever handheld.css
is triggered?