Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>IE6 doesn't support the <code>&gt;</code> selector, so the references to <code>body&gt;div#bwrap</code> won't work in IE6.</p> <p>Since they are effectively identical to the main selectors above them <code>div#bwrap</code>, this implies that the bits inside the <code>body&gt;div#bwrap</code> are overrides for browsers other than IE6.</p> <p>In the first example, IE6 would produce an element positioned <code>absolute</code>, whereas all other browsers would position it <code>fixed</code>. If you are no longer supporting IE6, you can therefore move that style into the main <code>div#bwrap</code> selector and remove the <code>body&gt;div#bwrap</code> one.</p> <p>You can find out more about supported CSS selectors in various browsers here: <a href="http://quirksmode.org/css/contents.html" rel="nofollow">http://quirksmode.org/css/contents.html</a></p> <p>The <code>voice-family</code> bit is a hack which tells the hacked browser to ignore the rest of the styles in the selector. It is also IE6-specific, so if again if you're dropping IE6 support, you can drop the hack. You can find out more about this hack here: <a href="http://tantek.com/CSS/Examples/boxmodelhack.html" rel="nofollow">http://tantek.com/CSS/Examples/boxmodelhack.html</a></p> <p>The second example also has a matching <code>&gt;</code> selector, which you need to treat in the same way as the first example, although the <code>margin-left</code> is specified in both anyway (since they're using this method of separating IE6, I don't know why they bothered with the voice-family hack as well).</p>
    singulars
    1. This table or related slice is empty.
    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. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      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