stubbornella / oocss

Object Oriented CSS Framework

Home Page:http://stubbornella.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IE6 bug : grid nested in a module

laobab opened this issue · comments

When you nest a grid in a module, the CSS _position: relative; of the class .lastUnit generates a layout bug.
Example code:

    <div class="mod simpleExt"> 
        <b class="top"><b class="tl"></b><b class="tr"></b></b> 
        <div class="inner">
            <div class="hd">
                <h3>simpleExt</h3>
            </div>
            <div class="bd">
                <ul class="line">
                    <li class="unit size1of2">col 1</li>
                    <li class="unit size1of2 lastUnit">col 2</li>
                </ul>
            </div>
        </div>
        <b class="bottom"><b class="bl"></b><b class="br"></b></b> 
    </div>