2 つの a タグを含む div があり、最初の a タグの css を書きたいと考えています。
HTML は次のとおりです。
<div id="Text">
<br />
<a href="http://farsnews.com/newstext.php?nn=13920430001427#sthash.BOTOvYwM.dpuf">فارس نیوز</a>
<a href="http://farsnews.com/newstext.php?nn=13920430001427#sthash.BOTOvYwM.dpuf">فارس نیوز</a>
</div>
ここに私のcssコードがあります:
#Text a:last-child{
text-decoration: none;
color: red; /*rgb(18, 139, 235)*/
}