Media Queries?
Media Queries?
Out of context: Reply #13
- Started
- Last post
- 25 Responses
- mg330
Quick question:
Can you group media queries together to prevent duplicating code CSS into multiple sections?
EX:
@media ( max-width: 500px ) @media ( max-width: 500px ) {
{
[CSS DETAILS]
}
}How can this be done exactly?
- ?ETM
- Your "two" media queries are the same. They're both max-width:500px. Did you mean to do that? Because that's what doesn't make sense.********