I have noticed in bootstrap responsive CSS, there is this class:
.row{margin-left:-30px;*zoom:1}
I’ve never come across an inline * inside a css property. Could anyone clarify what this does?
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.
It’s like an inline conditional statement for IE5.5 – IE7. Only IE 5.5, IE6, and IE7 will display
zoom: 1because of the inline*(known as the “star property hack”). Similar to the IE6 hack with the underscore_.See: http://snook.ca/archives/html_and_css/targetting_ie7