JSFiddle - React, Tailwind, and code Playground

HTML

<div class="news">
    <a href="#">Ссылка</a> текст текст 
    <a href="#" class='pic'>rew<img src="http://placekitten.com/g/200/300" /></a>
</div>

CSS

.news a {
color: #505050;
text-decoration: none;
border-bottom: 1px dotted #717171;
vertical-align: bottom;
}

.news a:hover {
color: red;
text-decoration: none;
border-bottom: 1px dotted red;
vertical-align: bottom;
}

.news a.pic {
border-bottom:none
}