stylecow-plugin-base64
v1.1.1
Published
Stylecow plugin to embed base64-encoded images in the css
Downloads
5
Readme
stylecow plugin base64
Stylecow plugin to embed images in the css using base64 encode. Only images lower than 5Kb will be embedded.
You write:
div {
background: url('image.png');
}
And stylecow converts to:
div {
background: url("data:image/png;base64,iVBORw0KGg...");
}
More demos in the tests folder