Slide 7
Slide 7 text
Responsive Web Design
http://www.alistapart.com/articles/responsive-web-design/
HVGA
@media screen and (max-width: 320px) {
...
}
WVGA
@media screen and (max-width: 321px) and (max-width: 480px) {
...
}
iPad
@media screen and (max-width: 481px) and (max-width: 768px) {
...
}
Larger
@media screen and (min-width: 769px) {
...
}
13年3月5⽇日星期⼆二