The twitter bootstrap code has a lot of CSS properties with a !default at the end.
E.g.
p {
color: white !default;
}
What does !default do?
UPDATE
My bad for not being clear. I am using the SASS part of Bootstrap.
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.
Twitter Bootstrap uses LESS as far as I’ve seen. On the other hand,
!defaultis actually part of Sass, and is used for giving Sass variables ($var) default values, which would make it invalid in your given context, even in Sass.Besides, I’ve not been able to find any references to
!defaultin the LESS documentation, and to my knowledge it is exclusive to Sass. Are you sure you found this in Bootstrap’s source and not elsewhere? Because I honestly don’t remember seeing Sass/SCSS code in Bootstrap’s stylesheets.For what it’s worth, the only valid token that starts with
!in CSS is!important, which you may already be aware of.