grid

TwitterFacebook
Get flash to fully experience Pearltrees
http://24ways.org/2006/compose-to-a-vertical-rhythm

24 ways: Compose to a Vertical Rhythm

“Space in typography is like time in music. It is infinitely divisible, but a few proportional intervals can be much more useful than a limitless choice of arbitrary quantities.” So says the typographer Robert Bringhurst, and just as regular use of time provides rhythm in music, so regular use of space provides rhythm in typography, and without rhythm the listener, or the reader, becomes disorientated and lost.

960 Grid System

http://960.gs/ Download - CSS, sketch paper, and templates for: Acorn, Fireworks, Flash, InDesign, GIMP, Inkscape, Illustrator, OmniGraffle, Photoshop, QuarkXPress, Visio, Exp Design. Repository at GitHub . Essence The 960 Grid System is an effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels.
All the dimensions are in percentage widths so the layout adjusts to any screen resolution. Vertical dimensions are not set so they stretch to the height of the content. Maximum column content widths To prevent wide content (like long URLs) from destroying the layout (long content can make the page scroll horizontally) the column content divs are set to overflow:hidden. This chops off any content that is wider than the div. Because of this, it's important to know the maximum widths allowable at common screen resolutions.

The Perfect 3 Column Liquid Layout: No CSS hacks. SEO friendly.

http://matthewjamestaylor.com/blog/perfect-3-column.htm
http://www.mezzoblue.com/archives/2005/05/13/columns_grid/

Columns & Grids

I seem to quite often go back and forth between creating organic layouts with intuitive proportions, and creating a grid that I can hang my various elements on. Lately I’ve been more interested in the latter. Frequently I’ve caught myself calculating in my head what 750 divided by 3 minus two 10px margins equals. One of the larger problems in working with grids in web pages is that you often can’t do much about vertical proportions. Often your content is dynamic, so the best you can do is approximate. Throw in any compensation for font scaling, and it’s easy to lose any semblance of control over the way a layout expands downward.

Free CSS Layouts And Templates | Smashing Magazine

http://coding.smashingmagazine.com/2007/01/12/free-css-layouts-and-templates/ As a web-developer you don’t have to re-invent the wheel all the time. If it just has to work, and has to be valid, and has to have a nice, visually appealing design hierarchy, you just can use css-techniques developed in the web-dev-community over the last few years. If you take a look around, you’ll find many templates, which include basic (X)HTML/CSS-markup. You can start from there, learning and exploring the possibilities of CSS and modifying templates for your exquisite taste.

Grid-based design: Part 2, Designing blog theme templates | urlg

The previous grid article dealt with how to come up with a CSS strategy when you're working with another visual designer's comps. Now I'd like to discuss doing grid-based theme design for open source content management systems, e.g. Drupal and WordPress. The purpose of this article is to give you an idea of how to approach blog theme design using a grid system. After reading this, you should be able to create a fully-functional grid-based design and HTML prototype that can be coverted into a theme template. http://urlgreyhot.com/personal/weblog/grid_based_design_part_2_designing_blog_theme_templates
http://www.urlgreyhot.com/personal/weblog/cutting_and_sewing_grid_based_design_part_1_working_with_other_peoples_comps

Cutting and sewing grid-based design: Part 1, working with other

What kind of grid article is this? Good question. After I blogged that I wanted to write this entry a few weeks ago, I started wondering if it was worth it since more appropriate people (visual designers) have written about grid-based web design already.
From www.audi.nl Use when You are designing a conventional website that needs to follow the normal visual design standards. This pattern does not necessary apply to artistic web sites where the goal is to display an explicit non-standard style. The human eye 'sees' a web page a certain way, roughly from the top left to the bottom right, and the eye can be guided to see elements in a pleasing and distinctive way. How http://www.welie.com/patterns/showPattern.php?patternID=grid-based-layout

Grid-based layout

Really Undoing html.css

http://meyerweb.com/eric/thoughts/2004/09/15/emreallyem-undoing-htmlcss/ There’s an aspect of document presentation most of us don’t consider: the browser defaults. If you take an HTML or XHTML document—for the purposes of this exercise, assume it contains no presentational markup—and load it up in a Web browser with no CSS applied, there will still be some presentational effects. A level-one heading, for example, is usually boldfaced and a good deal larger than other text, thus leading to the old stereotype of headings being “big and ugly”; the pre element typically honors whitespace and uses a monospace font; a paragraph is separated from other elements by a “blank line”; and so on. From a CSS point of view, all this happens because the browser has built-in styles.