In Bootstrap or Skeleton, how are the various column widths decided?
For eg: In Bootstrap, .col-md-1 has width 8.33333333%.
And in Skeleton width of 1 column is 4.66666666667%.
Are they taken just randomly just by thinking or there is some science behind it?
Thank you
The reasoning behind the 8.33% is maths. Bootstrap by default has 12 columns so:
If you visit the Bootstrap website and customise the number of columns, that percentage will change. For example, if you choose 10 columns (i.e. change the
@grid-columns
value) the width will instead become 10%.