萬盛學電腦網

 萬盛學電腦網 >> 網頁制作 >> DivCSS教程 >> ipad 豎版 純CSS判斷ipad橫版和豎版

ipad 豎版 純CSS判斷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>

copyright © 萬盛學電腦網 all rights reserved