Miki
Miki

Reputation: 247

CSS3 Media Queries Width & Height

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

Answers (1)

bookcasey
bookcasey

Reputation: 40463

@media only screen and (max-width:320px){...}

You forgot some parentheses.

Upvotes: 1

Related Questions