Skip to content

Instantly share code, notes, and snippets.

@ghostcode
Last active August 29, 2015 14:03
Show Gist options
  • Save ghostcode/e0d9c9fcc14942d4c201 to your computer and use it in GitHub Desktop.
Save ghostcode/e0d9c9fcc14942d4c201 to your computer and use it in GitHub Desktop.
ipad的css样式
<link rel="stylesheet" media="all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait)" href="ipad-portrait.css" />
<link rel="stylesheet" media="all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape)" href="ipad-landscape.css" />

减少网络请求,使用下面:

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
  .ipad-portrait { color: red; } /* your css rules for ipad portrait */
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) {
  .ipad-landscape { color: blue; } /* your css rules for ipad landscape */
}

参考1 参考2 参考3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment