Reputation: 247
I try to set this:
@media only screen and max-width320px{footer{text-align:left;}section,body{width:300px;}}
But not work what i do bad?
Upvotes: 0
Views: 446
Reputation: 40463
@media only screen and (max-width:320px){...}
You forgot some parentheses.
Upvotes: 1