3
I’ve seen somewhere that has how to apply a certain css to a "to" if you have a certain text in the link, but can no longer find.
For example, I have the following links in my html
<a href="http://site.com.br/nothing">Link para nada</a>
<a href="http://site.com.br/something"><Link para alguma coisa</a>
<a href="http://other.com.br/something"><Link para alguma coisa</a>
Suppose you only want the link you have Something in the href
have a different style, how could you do it?
@devgaspa The two answers are correct, but I accepted Alan’s because it was the first post.
– Pedro Camara Junior
@Alanrezende had not clearly written what he needed, I edited the question by adding another link. What I need to consider is just a part of this link (Something). Using your answer I found already how to do, in css just use the "" right after href - a[href="Something"].
– Pedro Camara Junior