WWE Release 12 Wrestlers Before Crown Jewel
- * sizes="(max-width: 430px) 33vw, (max-width: 768px) 50vw, (max-width: 1024px) 50vw, 33vw"
- This tells the browser how much space the image will occupy on the screen at different viewport widths.
- * (max-width: 430px) 33vw: If the viewport width is 430px or less, the image should take up 33% of the viewport width (vw stands for viewport width).
This is an HTML <img> tag’s sizes and srcset attributes. Let’s break down what it means:
1. sizes Attribute:
* sizes="(max-width: 430px) 33vw, (max-width: 768px) 50vw, (max-width: 1024px) 50vw, 33vw"
This tells the browser how much space the image will occupy on the screen at different viewport widths. It’s a set of media conditions and corresponding sizes.
* (max-width: 430px) 33vw: If the viewport width is 430px or less, the image should take up 33% of the viewport width (vw stands for viewport width).
* (max-width: 768px) 50vw: If the viewport width is 768px or less (but greater than 430px),the image should take up 50% of the viewport width.
* (max-width: 1024px) 50vw: If the viewport width is 1024px or less (but greater than 768px), the image should take up 50% of the viewport width.
* 33vw: If the viewport width is greater than 1024px, the image should take up 33% of the viewport width.
2. srcset Attribute:
* `srcset=”https://images.ladbible.com/resize?type=webp&quality=70&width=256&fit=contain&gravity=auto&url=https://images.ladbiblegroup.com/v3/assets/blta90d05ad41a54a71/bltcd6e96de0f330328/68ea43cac8c11c0e1ec98b4a/Stevie-Turner-WWE.png 256w, https://images.ladbible.com/resize?type=webp&quality=70&width=384&fit=contain&gravity=auto&url=https://images.ladbiblegroup.com/v3/assets/blta90d05ad41a54a71/bltcd6e96de0f330328/68ea43cac8c11c0e1ec98b4a/Stevie-Turner-WWE.png 384w, https://images.ladbible.com/resize?type=webp&quality=70&width=640&fit=contain&gravity=auto&url=https://images.ladbiblegroup.com/v3/assets/blta90d05ad41a54a71/bltcd6e96de0f330328/68ea43cac8c11c0e1ec98b4a/stevie-Turner-WWE.png 640w,https://images.ladbible.com/resize?type=webp&quality=70&width=750&fit=contain&gravity=auto&url=https://images.ladbiblegroup.com/v3/assets/blta90d05ad41a54a71
