2019-04-16 TIL

picture

<picture> 내에 <img>를 사용하는 것은 필수

1
2
3
4
5
<div class="rwd-wrapper">
<picture>
<source srcset="images/image-1x.png 1x, images/image-2x.png 2x"
</picture>
</div>

image

1
2
3
4
5
6
<div class="rwd-wrapper">
<picture>
<source srcset="images/image-1x.png 1x, images/image-2x.png 2x">
<img src="images/image-src.png">
</picture>
</div>

image

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×