Since <a>
element cannot contain <a>
children, so wrapping the whole .flex-container with <a>
would failed. Just change the tag of the placeholder from <a>
to <span>
.
<a href="http://yourlinkhere.com">
<div class="flex-container">
<div class="red-box flex-item">
<div class="lh-icon"><img src="https://i.imgur.com/IyLYxCc.png"></div>
<span>Placeholder</span>
</div>
</div>
</a>
Hope this help 😀