data: URIs in CSS
CSS can reference images inline: background-image: url(data:image/png;base64,...). This removes extra HTTP requests for small icons.
The format is data:<mime>;base64,<payload>. base64app accepts the full URI and strips the prefix on decode.
When to use them
Great for small assets (icons, tiny logos). Large images bloat CSS — prefer external files for big graphics.
