24.10.2014 Views

Hafez Rouzati

Hafez Rouzati

Hafez Rouzati

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

CSS Media Queries<br />

/* iPhone 4/4s portrait */<br />

@media screen and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {<br />

}<br />

/* iPhone 4/4s landscape */<br />

@media screen and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {<br />

}<br />

/* iPhone portrait */<br />

@media screen and (min-device-width: 320px) and (orientation: portrait) {<br />

}<br />

/* iPhone landscape */<br />

@media screen and (min-device-width: 320px) and (orientation: landscape) {<br />

}<br />

/* iPad portrait */<br />

@media screen and (min-device-width: 768px) and (orientation: portrait) {<br />

}<br />

/* iPad landscape */<br />

@media only screen and (min-device-width: 768px) and (orientation: landscape)<br />

{<br />

}

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!