in bootstrap-responsive.css
.row-fluid .span10{
width: 91.45299145299145%;
*width: 91.39979996362975%;
}
I was configuring the sizing, but am curious as to how they derived these numbers, and why are they accurate to 14 decimal places?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
They start with three values, which can be user-defined:
Edit: on Bootstrap 3.0+, the variables are now:
And calculate fixed row width:
Then they go fluid:
And finaly, generate all the spans (that is a bit confusing):
As you see, LESS does the divisions and multiplications.
See it yourself: