No. :contains
was once proposed but is not in the current Working Draft of CSS3 Selectors.
You would need some JavaScript, for example:
for (var i= document.links.length; i-->0;)
if (/SpecificWord/i.test(document.links[i].innerHTML)
document.links[i].style.color= 'red';
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…