Good morning || afternoon || evening!

So, the CSS grid layout module (http://dev.w3.org/csswg/css-grid/) is very
powerful, and I can think of all kinds of use cases for it.  A project I'm
currently working on could definitely benefit from it; however, support
is...crappy.... right now.

My question - has anyone come across a JavaScript fallback (Poly?) that
will suffice until browser adoption is better?  I could use Modernizr and
some custom dom manipulation until support is better, but I don't want to
reinvent the wheel if there is already something out there.
Unfortunately, my searches for fall backs just lead me to the more popular
definition of grid layouts (960, adaptive, etc.)

If you're interested, this is what I'm trying to do http://imgur.com/QuzW5rY:
 Basically, if I could switch to the grid layout module on narrow screens
I'd be golden.


My markup is like this:
<div class="wrapper">
  <div>
    <div>1</div>
    <div>2</div>
  </div>
  <div>
    <div>3</div>
    <div>4</div>
  </div>
</div>

This would need to change for grid-layout but I wanted to include it in
case someone has other ideas for accomplishing it.  I know that an easy way
out would be to use absolute positioning, but that tends to break things in
'responsive' layouts.

-- 
Chris Rockwell
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to