0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

質問です。

Last updated at Posted at 2019-08-17

以下このサイトのhtml, cssについての質問です.

####サイトをiPhone(またはpcのchromeのデベロッパー)で表示したときにflexboxが作用しない. (解決済み)

スクリーンショット 2019-08-17 23.46.43.png
(chromeで表示したiPhoneの画面)

iPhone上では右のブロック要素が左のブロック要素の下に来る予定です.
そのために以下のコードを使っています.

@media screen and (max-width: 768px) {.flexbox {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}

しかし, デベロッパで確認したところpcのウィンドウのサイズを変えたときには作用したのですがchromeでiPhoneの画面を再現したところウィンドウのサイズを変えても上のスクリーンショットのpaddingの中の数字がwidthが980のままです. 何か解決策はないでしょうか.

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?