How to style a particular selector select for specific media query without wrapping the selector inside @media {..}?
Is it possible like
.contact-info {float:left}
.contact-info for media screen and max-width 320px {float:none}
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.
No, it’s not possible. For that type of functionality Media Query is best because Media Query is created to solve that purpose. Media Query is the only solution with CSS.