2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

HTML5 pictureタグの使い方

Last updated at Posted at 2025-09-02

pictureタグでPCとSPの画像の使い分け

デイトラで学び直しをしていたら、初めて知った書き方だったので、メモ。

以下の書き方で、
768px以上はPC用の画像を表示(srcset="画像パスを指定")
それ以外はSP用の画像を指定する。

index.html
<picture>
    <source media="(min-width: 768px)" srcset="./img/fv.png">
    <img src="./img/sp/fv.png" alt="背景画像">
</picture>

え、この書き方知ってた?(笑)

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?