Note that there are some explanatory texts on larger screens.

plurals
  1. POanalyzing css in IE 9
    primarykey
    data
    text
    <p>I'm just wondering if IE 9 has a way to do something similar to Firefox where I can select the "Inspect" option under the Web Developer menu and then see which css classes are being applied to each element on my page. I did notice in IE 9's F12 feature, I can select "View" -> "Class and ID Information" but it doesn't show me the css details. </p> <p>My problem is that my site looks completely different in IE than in FF and I'm trying to debug. Any other suggestions would be appreciated. Thanks.</p> <p><strong>EDIT 1:</strong> </p> <p>The specific problem is that in FF I have a left and top margin so that all content is centered. However, in IE everything is left justified. I decided to start looking at the first div of the page because even that's appearing differently.<br> There are several divs nested within each other but I think I may have found the culprit.</p> <p>In IE, the css for one of the divs looks like this: </p> <pre><code>#regionHeader .wrapper { overflow:hidden; } .wrapper { margin:0 auto; max-width:1140px; min-width:801px; width:auto; } .wrapper { margin:0 auto; } .wrapper { margin:0 auto; } .wrapper { zoom:1; } .wrapper:after { clear:both; } .wrapper:after { display:table; } .wrapper:before { display:table; } div { -webkit-text-size-adjust:none; border-bottom:0; border-left:0; border-right:0; border-top:0; margin:0; padding-bottom:0; padding-left:0; padding-right:0; padding-top:0; } </code></pre> <p>But the same in FF has the following style: </p> <pre><code>#regionHeader .wrapper { overflow:hidden; } .wrapper { margin:0 auto; min-width:320px; } .wrapper, .clearfix, #content { } html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, q, small, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, figure, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { border:0 none; margin:0; padding:0; } </code></pre> <p>Notice the max-width:1140px; in IE vs FF which only has a min width. Would that be causing the problem? Unforunately, this is not my code...</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload