Does loading an image in the data URI format, make it load faster in the page?
For example:background: url("data:image/jpg;base64,/someImageData")
Or does it load faster in the common .jpg or .png format?
For example: background: url("wallpaper.jpg")
The time needed to render the image will be identical, but the time it takes to load may be different. Base64 encoding an image makes it about 37% larger than if you were to link to it via a url():
However, while the image is larger and requires more bytes to be downloaded, you save the time of a talkback with your server to fetch the image with the url() method. There's no way to say for sure which loads faster - it will depend on the connection of your users. See this article on when it's a good idea to use base64 encoded images.