2017-12-07 6 views

答えて

0

あなたは、これはあなたを助けるかもしれない。この

@media (orientation: landscape) { 
    img { 
    width: auto; 
    } 
} 

@media (orientation: portrait) { 
    img { 
    width: 100%; 
    } 
} 

希望のメディアクエリを使用することができます。

DEMO

@media (orientation: landscape) { 
 
    img { 
 
    width: auto; 
 
    } 
 
} 
 

 
@media (orientation: portrait) { 
 
    img { 
 
    width: 100%; 
 
    } 
 
}
<img src="https://static.pexels.com/photos/371633/pexels-photo-371633.jpeg">

関連する問題