Quantcast
Channel: Mediacurrent - Drupal
Viewing all articles
Browse latest Browse all 313

Advanced Layouts with Flexbox

$
0
0

If you’ve been doing web design and development for a while you may remember the days when creating website layouts involved tables or browser specific techniques. Things got a lot better when we began using floats for creating layouts and this proved to be extremely successful. In fact, this technique is still widely used by most developers and designers because it works well and it allows us to build pretty sophisticated layouts.  

There are problems, however, with float layouts which, if not properly addressed, can create major issues including the lack of vertically align content and clearing floats which if not properly handled can break our layouts. There is no float center and when not clearing floats the right way we can end up with a lot problems in our hands.

Enter The Flexbox Layout (Flexible Box) module, which is currently a W3C Last Call Working Draft). The flexbox layout is direction-agnostic as opposed to the regular layouts (block which is vertically-based and inline which is horizontally-based). While those have served us well, they are not as flexible for the reason outlined above.

One of the biggest advantages flexbox is the ability expands items within a flex container to fill available free space, or shrinks them to prevent overflow. Flex items can be arranged in any direction as individual items or group of items which is something that is extremely hard to do with the current float technique.

Below is a presentation I gave at the recent DrupalCon 2015 in Los Angeles where I go into detail about what flexbox is, how it works and how to better understand its various properties. Take a look at it for a more in-depth explanation of flexbox and how it solves many of the problems we currently face with float layouts.

 

 

Additional Resources

Why Good Markup Matters | Mediacurrent Blog Post
Exloring the Picture Module | Mediacurrent Blog Post


Viewing all articles
Browse latest Browse all 313

Trending Articles