ipad 竖版 纯CSS判断ipad横版和竖版
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Link study</title> <!--竖版本使用的样式--> <style media="all and (orientation:portrait)" type="text/css"> #landscape { display: none; } body {background:red} </style> <!--横版本使用的样式--> <style media="all and (orientation:landscape)" type="text/css"> #portrait { display: none; } body {background:green} </style> </head> <body> </body> </html>