On Feb 4, 3:28 am, Jason <[email protected]> wrote: > I have the following code in my <head>: > > <link rel="stylesheet" href="style/main.css" type="text/css" > media="screen" /> > <link rel="stylesheet" href="style/framework.css" type="text/css" > media="screen" /> > <!--[if IE 7]><link rel="stylesheet" href="style/ie7.css" type="text/ > css" media="screen" /><![endif]--> > <!--[if IE 6]><link rel="stylesheet" href="style/ie6.css" type="text/ > css" media="screen" /><![endif]--> > > In Firebug when I click on the CSS tab it only picks up main.css and > framework.css, it hasn't picked up ie6.css and ie7.css. > > This is understandable as Firefox does not pick up the IE stylesheets > (thats the whole point) but I would like to be able to view the IE > stylesheets code in Firebug, is there any way around this?
No, because Firebug shows you the data used by Firefox to build the page. For the most part Firebug does not show you source, it shows you the results from source. Since these style sheets are not used in the page, there is no reason to show them. jjb -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/firebug?hl=en.
