Skip to content

Commit

Permalink
Merge pull request #5 from ianrose/gh-pages
Browse files Browse the repository at this point in the history
Typo fix
  • Loading branch information
mdo committed Mar 4, 2014
2 parents d63d5fd + 28f200d commit bd0755e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This isn't a serious project really, it's just an experiment. I'm curious about
- `flex-box` has poor rendering last I heard because browsers have to do a lot of repainting to support it. I have no references to this, it's what I've heard. Plus, [browser support](http://caniuse.com/#feat=flexbox) and what not.
- `display: inline-block;` is gnarly because it involves resetting `white-space` and that's just silly. We shouldn't be resetting that kind of stuff just for a grid system.

So, based on that, `display: table;` starts to sound kind of interesting. Table layouts, especially ones that include `table-layout: fixed;` render super fast because browsers only need to render the first row of cells to pain the whole table. That's kind of moot with one row grids like this, but it *might* help anyway.
So, based on that, `display: table;` starts to sound kind of interesting. Table layouts, especially ones that include `table-layout: fixed;` render super fast because browsers only need to render the first row of cells to paint the whole table. That's kind of moot with one row grids like this, but it *might* help anyway.

### How it works

Expand Down

0 comments on commit bd0755e

Please sign in to comment.