bootstrap 為什麼只能預設12列

jycg789發表於2020-12-10

bootstrap只能預設12列是因為12是數字“1、2、3、4、6”的最小公倍數,所以12列柵格系統相對較靈活,並且支援將一行分成1列、2列、3列、4列、6列。



本教程操作環境:Windows7系統、bootstrap3版,該方法適用於所有品牌電腦。

推薦:《bootstrap視訊教程》

為什麼Bootstrap要預設12列?

今天被問了一個問題:”有沒有想過為什麼Bootstrap要預設是12列?“

呃,好吧,用了Bootstrap一段時間,的確沒想過為什麼要預設是12列,隱隱約約覺得是因為佈局比較方便,常見的分2塊,3塊,4塊,都可以方便分完。

既然有假設,那還是要求證一下。

谷歌上一陣搜尋。

1

Contrary to the question’s parenthetical, Bootstrap was always at 940px wide, and not 960px, even with the original 16 columns. With the switch to 12 columns in Bootstrap 2, we wanted to simplify the overall grid (16 columns is right on the edge of enough granularity) and make it easier to get three columns.

大致意思就是原來是16列的,後來改成了12列,是為了更容易可以排出三列。

好,那麼問題來了,為什麼之前是設計16列呢?

繼續谷歌。

1

16-columns has long been the go-to grid for designers and developers, but we’ve noticed a shift to 12- and 24-columns to offer a more flexible layout. And they’re right for doing so—gridded layouts work best with an odd number of columns (you often see three columns, but four or six are not that popular).

這個是Bootstrap的github bug列表中2011年的一段討論,題目是問為什麼用16列代替了24列。原來16列之前還有24列。大概是說,16列是開發和設計人員的首選,但是12列或者是24列可以更靈活。其中說到就是奇數列的佈局更常見,比如經常可以看到三列形式的佈局。

這裡的話,為什麼說16列是開發和設計人員的首選,我並不清楚。但是後面說到三列布局更常見,的確是這樣,比如CSDN的首頁就是個三列形式的佈局。用16列想分3:1或者3:2都不是很方便。

而12是1,2,3,4,6的最小公倍數,所以12列柵格系統相對較靈活,支援將一行分成1列,2列,3列,4列,6列。若是想要支援5列,那1,2,3,4,5的最小公倍數是60,而60這個數對於柵格系統來說顯然太大了。

相關文章