私はこのメディアクエリーを持っています。css:何とか検証をパスしませんが、オリエンテーションクエリーを取り出すと、正常に検証されます。私はそれに間違って何かを見つけることはできません。すべての中括弧はバランスが取れていますが、何が間違っているのでしょうか?Parse Error @media only screenと(orientation:landscape)
/*メディアクエリー--- MOB */
@media screen and (min-width:200px) and (max-width: 640px) {
/* ....CSS classes.... */
@media only screen and (orientation: landscape) {
.loginImgDiv {
margin-left: 70%;
width:100%;
height:auto;
}
} /* End of @media only screen and (orientation: landscape)*/
@media only screen and (orientation: portrait) {
.loginImgDiv {
margin-left: 45%;
width:100%;
height:auto;
}
} /* End of @media only screen and (orientation: portrait)*/
} /*End of media query---MOB */
[ネストメディアクエリ](http://stackoverflow.com/questions/16114000/nesting-media-queries)の可能な複製 – Sreekanth