Ahmed Mohammed
Ahmed Mohammed

Reputation: 33

How to convert css url to base64?

How to convert css url to base64

like:

<link rel="stylesheet" href="data:text/css;base64,Ym9keSB7IHdpZHRoOiA5NjBweDsgbWFyZ2luOiBhdXRvO30gcCB7IGZvbnQtZmFtaWx5OiBWZXJkYW5hO30" type="text/css">

Upvotes: 3

Views: 4750

Answers (1)

Toni MXS
Toni MXS

Reputation: 51

This is not an url, this is the entire base64 encoded css. You can encode and decode the css file here: base64decode.org or with notepad++ mime-tools.

Upvotes: 1

Related Questions