tl;dr: Avoid HTTP/1.1 because browsers limit the number of concurrent requests going to HTTP/1.1 origins. Use HTTP/2.

The browser will cap the number of concurrent requests to six per origin when using HTTP/1.1.

That’s why developers used to concatenate images in CSS sprites, to reduce the number of ongoing requests.

This limitation does not apply for HTTP/2.