base64app.com

Base64 in CSS (data URIs)

Inline tiny images in stylesheets — and decode them when needed.

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.

Related converters

More guides