I currently have an img tag that when people hover over it, I want a tooltip to appear. As I understand it, you can only place a tooltip in an 'a' tag, is it possible to surround/encapsulate my img tag in order to do so or does this not work?
e.g.
<li class="list-inline-item">
<a href="whatever" data-toggle="tooltip" data-placement="auto top" title="Arduino">
<img src="https://png.icons8.com/color/50/000000/arduino.png">
</a>
</li>