Why would this not work.
body{
@media screen and (min-width: 1024px) {
min-width:1339px;
}
}
I want if the user is on an Iphone or Ipad 2 to set the min-width:1339px; but if on deskop browsers to not add any min-width.
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.
With media queries, you can’t put them inside of a selector.
Edit: After re-reading, I also see that you want to apply this to iPads/iPhones, so you want max-width, not min-width.