Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is Twitter Bootstrap Grid System with 12 columns instead of 10 (let's say 100%)?

If 10 can represent 100% (on CSS width for example) why is this grid system for 12 columns instead of only 10? I guess other frameworks have it also that way.

like image 468
Uuid Avatar asked Jan 15 '14 18:01

Uuid


1 Answers

12 can be divided evenly by 2, 3, 4 and 6, so you can easily make 2, 3, and 4 column layouts with the same grid. That's not nice to do with a grid of 10 columns.

like image 179
pauljz Avatar answered Sep 29 '22 20:09

pauljz