I have tracking pixels on a webpage that uses image tags. These leave empty spaces on the page. I want to hide them using css. I already verified that both of these examples:
<img src="https://placekitten.com/g/200/300">
vs
<img src="https://placekitten.com/g/200/300" style="display:none">
Produces a http request (as seen in the network tab of my browser's dev tools). Does anyone see any issues with hiding tracking pixels using css this way? I only tested in Chrome and the http request is still going through so it should be fine but are there other browsers which won't send the http request if the image in hidden?