#スマホ用サイトなどで画面の向きに応じてスタイルを切り替えたい場合の記述
css
@media screen and (orientation:landscape) {
/* 横向き用スタイル */
}
@media screen and (orientation:portrait) {
/* 縦向き用スタイル */
}
Go to list of users who liked
More than 5 years have passed since last update.
#スマホ用サイトなどで画面の向きに応じてスタイルを切り替えたい場合の記述
@media screen and (orientation:landscape) {
/* 横向き用スタイル */
}
@media screen and (orientation:portrait) {
/* 縦向き用スタイル */
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked