Avoid using <object> tag inside anchor <a> tag

I have been recently working on a project where I got an issue with the anchor <a> tag. The issue was with the hover effect on the anchor tag. There was no hover effect over the link. Plus, the link was not working either. However, the hover effect was seen below the link for small space. The anchor element had a <object> element inside it and that was the reason of the issue. The link element looked like this:

<a href="..." title="...">
  <object type="image/svg" data="path/to/svg/image" class="some-class-name"></object>
</a>

With the help of some searches, I tried different solutions through CSS. But, could not get any luck. Later on, there was an easy fix to the solution. I replaced the <object> tag with <img> element and it worked like a charm without making any extra changes for the hover effect and link to work. The solution looks like this:

<a href="..." title="...">
  <img src="path/to/svg/image" class="some-class-name" />
</a>

The same class provided the same design as earlier. Also, it could not hamper the SEO as well.

Also, there was a similar case with the use of <label> inside the<a> element. Removing the <label> element resolved the issue. You can use a <span> element if needed.

Hope it helps.

Happy coding!!!