Why does Twitter Bootstrap 3.1.0 wastes horizontal space on wide screens? -


twitter bootstrap 3.1.0 comes rules waste horizontal space on wide screens. when remove them nothing seems break, breaking. know if break or why these included? thank you!

@media (min-width: 768px) {   .container {     width: 750px;   } } @media (min-width: 992px) {   .container {     width: 970px;   } } @media (min-width: 1200px) {   .container {     width: 1170px;   } } 

from why bootstrap 3 force container width sizes?,

the official answer bootstrap folks:

what boils down designing specific breakpoints easier (in mind) designing unlimited, unknown sizes. alternative mention isn't wrong or bad, different. i'd rather maintain tiers specific ranges

bootstrap's grid system makes more feasible method. there shouldn't breaking if find other spacing issues continue digging, might reason.


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -