网页制作 
首页 > 网页制作 > 浏览文章

ipad 竖版 纯CSS判断ipad横版和竖版

(编辑:jimmy 日期: 2024/11/18 浏览:3 次 )

复制代码代码如下:
<!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>
上一篇:如何设置单词字体间距 css设置字体间距样式代码
下一篇:纯CSS打造(无图像无js)的非常流行的讲话(语音)气泡效果