Sha256: a160aef53cc451b743cb4064d732663de5c319d27dc775b2c1c7edca829f9ab7
Contents?: true
Size: 610 Bytes
Versions: 12
Compression:
Stored size: 610 Bytes
Contents
--- sort: 1 --- # Standard HTML - **`picture`** - `<picture>` element surrounding a `<source>` tag for each required srcset, and a fallback `<img>`: ```html <picture> <source srcset="..." sizes="..." media="..." type="..."> <source srcset="..." sizes="..." media="..." type="..."> (...) <img src="..."> </picture ``` - **`img`** - a single `<img>` tag with a `srcset` entry: ```html <img src="..." srcset="..." sizes="..." alt="..." width="..." height="..."> ``` - **`auto`** - Supply an img tag when you have only one srcset, otherwise supply a picture tag.
Version data entries
12 entries across 12 versions & 1 rubygems