I want to add a short cut image to every dropdown item, therefore, I have written the following code:
<a class="dropdown-item" id="dropdown_new_line">
<span style="float: left">New Line</span>
<span style="float: right;">
<img class="icon"
src="{% static "laneDetectionApp/icons/icons8-+-100.png"%}" alt="image of + key">
</span>
</a>
This looks like the following:
And I want that it looks like the following:
So my question is, what do I have to do so that the highlight color goes over the whole element?