Is there any size limitation for ‘data:’ URL scheme values? I’m interested in limitations in popular web browsers. In other words, how long can data:image/jpg;base64,base64_encoded_data be in <img src='data:image/jpg;base64,base64_encoded_data' /> or background-image: url(data:image/jpg;base64,base64_encoded_data)?
Is there any size limitation for data: URL scheme values? I’m interested in limitations
Share
Regarding limitations in web browsers, MSIE 6/7 do not support the data url scheme… More info on wikipedia
The length limits are different per browser – i believe IE8 allows up to 32KB and opera is 4KB, but can’t really tell about other browsers…