YUI Library Home

YUI Library Examples: Grids CSS: Nested Standard Nesting Grids (1/4 - 1/4 - 1/4 - 1/4)

Grids CSS: Nested Standard Nesting Grids (1/4 - 1/4 - 1/4 - 1/4)

This example shows how to use nested Standard Nesting Grids to create four evenly-sized columns.

Subdividing Regions with Nesting Grids and Special Nesting Grids

YUI Grids CSS is the ability to subdivide regions of the page into two or three columns of even (50%-50% or 33%-33%-33%) or uneven size (66%-33%, 25%-75%, etc).

Nested subdivisions of spaces are created by the interplay of "grids" and "units". The "grids" are a parent container that tells its children how to behave. The Standard Nesting Grid's parent container is div.yui-g, where "g" stands for "grid" or "grid holder." Within this holder are two units that take direction from their parent. They look like this: div.yui-u, where "u" stands for units. The units are indentical except that we need to add a class to distinguish the first one from any others.

Here is the markup for two Standard Nesting Grids nested within a parent Standard Nesting Grid

This is an important example. First of all, note that all Nesting Grids can be nested within other Nesting Grids. If a Standard Nesting Grid (div.yui-g) creates two children, each of those children can be another Nesting Grid. Making each child of a Standard Grid another Standard Grid, we can easily create a four-column layout.

The second thing to note is that while Nesting Grids usually contain Units, they can also directly contain other Nesting Grids. Remember that the "first" node position still needs to me specified via a class value whether it's a grid or a unit.

The final thing to keep in mind in this example is that while we're showing a Standard inside a Standard, you can mix and match Special Nesting Grids in the same way.

The above markup will create two units within each of two units. The result is four columns of even width.

Available Nesting Grids

We refer to these Nesting Grids as either Standard (meaning their two children split space evenly) or Special (meaning they share space unevenly, for example 66% and 33%, or that there are three children instead of two, for example 33%, 33%, 33%).

  • div.yui-g - Standard Nesting Grid - tells two children to each take up half the available space.
  • div.yui-gb - Special Nesting Grid B - tells three children to each take up a third of the available space.
  • div.yui-gc - Special Nesting Grid C - tells the first of two children to take up 66% of the available space.
  • div.yui-gd - Special Nesting Grid D - tells the first of two children to take up 33% of the available space.
  • div.yui-ge - Special Nesting Grid E - tells the first of two children to take up 75% of the available space.
  • div.yui-gf - Special Nesting Grid F - tells the first of two children to take up 25% of the available space.

This example showcases the Standard Nesting Grid (div.yui-g) nested within another Standard Nesting Grid.

Configuration for This Example

You can load the necessary JavaScript and CSS for this example from Yahoo's servers. Click here to load the YUI Dependency Configurator with all of this example's dependencies preconfigured.

Grids CSS Examples:

More Grids CSS Resources:

Copyright © 2009 Yahoo! Inc. All rights reserved.

Privacy Policy - Terms of Service - Copyright Policy - Job Openings