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.

@media print,screen and (max-width: 768px)が作動しない

Posted at

Webページのスマホ対応で


@media print,screen and (max-width: 768px) {
....
}

を入れてみた。が、全然作動しない。
結果的に以下を追記すれば動作した。

<meta name="viewport" content="width=device-width, initial-scale=1.0">  

各項目の意味はこちらにわかりやすく書かれている。
http://stackoverflow.com/questions/22777734/what-is-initial-scale-user-scalable-minimum-scale-maximum-scale-attribute-in

0
0
0

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?