html - Add Underline To <img> tag inside <a> tag -
i have <a> tag has both text , image inside. want image , text underlined shown below:
what keep getting though:
as can see underline not extend under arrow. here code:
<a target="_blank" href="http://url.com" style="text-decoration:underline;color:#000001;" >call action <img src="image/path/triangle.png" border="0" /></a> now can't put border-bottom on wrapping container because on mobile need text underlined , put border on bottom of text.
you need style a border-bottom , remove text-decoration:underline
<a target="_blank" href="http://url.com" style="border-bottom:1px solid red;text-decoration:none;color:#000001;">call action <img src="//lorempixel.com/20/20" border="0" /></a> 

Comments
Post a Comment