Is there a way to remove the unwanted spaces around this SVG image in my HTML document using CSS? The image has some red borders indicating the areas with excessive spacing. Here is a screenshot link for reference: https://i.sstatic.net/GYBH2.png
The structure includes everything within a <div>
: the SVG within another <div>
, and text below it enclosed in an <h2>
tag.
Example structure:
<div class="info-logo">
<div class="logo-car">
<img src="name_file.svg" alt="Lil car">
</div>
<h2>This is a place where you can find your next car.</h2>
</div>