html - Add Underline To <img> tag inside <a> tag -


i have <a> tag has both text , image inside. want image , text underlined shown below:

enter image description here

what keep getting though:

enter image description here

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

Popular posts from this blog

gridview - Yii2 DataPorivider $totalSum for a column -

java - Suppress Jboss version details from HTTP error response -

Sass watch command compiles .scss files before full sftp upload -