andyhume.net

Thoughts and commentary on web development

Responsive Containers

July 15th, 2011

Media queries are clearly a huge step forward for responsive layouts. Letting you apply different CSS based on the width of the device or the viewport opens up all sorts of possibilities for adapting content to best fit a given space. Media queries work really well when you want to adjust the core layouts of the site, but they’re less suited to changing styles at a smaller more granular level.

When I’m building a specific front-end component, I take great care to make sure it is completely decoupled from any particular layout. It’s not concerned with the width at which it might be displayed at: it could be moved from a small side bar into a larger main column and its width simply adapts to whatever its parent element constrains it to. At Clearleft we take this as far as building all the content components of a site outside of any layout constraints whatsoever.

However, there are occasions when you might want to adapt the styles within the component itself depending on the width at which it is currently being displayed at. There’s a very simple example on the Fontdeck sign up page where the form labels pop up above the text inputs if the viewport is below a certain width.

The example on Fontdeck uses a media query to adjust the display of the label elements when the viewport is more than 1000px, but surely there’s a better way than that? For example, if I moved that form into the right hand column, wouldn’t it be better if it knew what width it was being rendered at and automatically adjusted its layout to the narrower width version. In other words, the layout of the component responded based on the width of its containing element, rather than on the essentially arbitrary width of the viewport.

For fun, here’s some made-up syntax (which Jeremy has dubbed ‘selector queries’) that describes this:

.signup-form @selector(min-px) {
.label {
display: block;
}
}

I think there’s a valid use case for this capability. Being able to adjust a single component based on its current layout is extremely powerful. It allows more re-usability of code, and it encourages designers to think about how an individual component adapts on its own, outside of any given layout. Decoupling individual content components from their layout is a key principle of OOCSS, and this encourages that principle.

On a current development project I’m using a JavaScript technique to achieve nearly the same result. It uses a small script (about 1.5k minified) to add class names to elements depending on their width.

Here’s how you use it:

<div data-squery="min-px=wide max-em=small">
<label for="name">Name</label
<input type="text" id="name />
</div>

The above code tells the JavaScript to apply a class of wide when the elements offsetWidth is greater than 300 pixels and a class of small when it is less than 10 ems. It looks a little odd of course. I’d rather not have that presentational information in a data attribute (it’s hardly data)—but of course the best place for all of this would be in CSS, so how it’s exposed in the markup is kind of a moot point right now.

The script is on Github, along with an example test page (yes, try resizing the browser and changing text size). It works in all modern browsers back to and including IE6.

Tweet

You can subscribe to my blog or follow me on Twitter.

View archives

gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.