Css ';方向:景观';影响我所有的设备。。。?

Css ';方向:景观';影响我所有的设备。。。?,css,mobile,orientation,landscape,portrait,Css,Mobile,Orientation,Landscape,Portrait,出于某种原因,当我试图将样式表“480pxland.css”仅定位于横向的移动设备时,它会影响我拥有的一切(其他移动设备、iPad、我的桌面,甚至超过1400px的屏幕)。下面列出了我的主idex页面之前的所有内容。希望有人能明白为什么它不影响480pxland.css表。谢谢 <!doctype html> <html lang="en"> <!--[if lt IE 7 ]> <html lang="en" class="ie6"> &l

出于某种原因,当我试图将样式表“480pxland.css”仅定位于横向的移动设备时,它会影响我拥有的一切(其他移动设备、iPad、我的桌面,甚至超过1400px的屏幕)。下面列出了我的主idex页面之前的所有内容。希望有人能明白为什么它不影响480pxland.css表。谢谢

<!doctype html>
<html lang="en">
<!--[if lt IE 7 ]> <html lang="en" class="ie6">    <![endif]-->
<!--[if lt IE 9]>
    <html lang="en" class="ie8">
    <link rel="stylesheet" type="text/css" href="/css/ie8-and-down.css" />
<![endif]-->
<!--[if IE 9 ]>   
    <html lang="en" class="ie9">
    <link rel="stylesheet" type="text/css" href="/css/ie9.css" />
<![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><!--<![endif]-->
<head>
<link rel="shortcut icon" href="/img/favicon.png" type="image/x-icon" />
<meta charset="utf-8">
<title>Welcome to EDM Uncovered!</title>
<link href="/css/12gs.css" rel="stylesheet" type="text/css">
<link href="/css/reset.css" rel="stylesheet" type="text/css">
<link href="/css/stylesheet.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Autour+One' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Jura:400,600,500,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Monoton' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Days+One' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="/jquery/jQuery.js"></script>
<script type="text/javascript" src="/js/protoFluid3.02.js"></script>
<script type="text/javascript" src="/js/unslider.min.js"></script>
<link href="/jquery/jQuery.ui.js" rel="stylesheet" type="text/css">
<link media="screen and (max-device-width: 480px)" href="/css/480px.css" rel="stylesheet" type="text/css">
<link media="screen and (max-device-width:480px) and (orientation:landscape)" href="/css/480pxland.css" rel="stylesheet" type="text/css">
<link media="all and (min-device-width: 768px and max-device-width: 1399px)" href="/css/768px.css" rel="stylesheet" type="text/css">
<link media="screen and (min-device-width: 1400px)" href="/css/1400px.css" rel="stylesheet" type="text/css">
</head>

欢迎来到这里!

无法在此复制。在我的桌面上,样式表
480pxland.css
不会加载。将最大宽度更改为
2480px
,它将加载。因此,我怀疑480pxland.css不是您的问题所在。会不会发生像你不小心编辑了480pxland.css,以为它是其他css文件中的一个?结果是我将两个分开了(方向:横向)和(最大设备宽度:480px)”而不是(最大设备宽度:480px和方向:横向)。当我将最大宽度增加到550px时,它终于可以工作了。显然,我的手机在横向方向上的屏幕比480大。