Maison > Questions et réponses > le corps du texte
P粉8845486192023-08-24 13:50:34
Essayez quelque chose comme ceci :
a { color: #0060B6; text-decoration: none; } a:hover { color:#00A0C6; text-decoration:none; cursor:pointer; }
Si text-decoration
ne fonctionne pas, remplacez-le par :
text-decoration: none !important;La règle
!important
remplace tous les autres styles avec l'attribut !important
规则会覆盖 text-decoration
. Vous pouvez en savoir plus à ce sujet ici.
P粉4038048442023-08-24 00:19:50
a { color: inherit; }
... fera prendre à l'élément la couleur de son parent (je pense que c'est ce que vous recherchez).
La démonstration en direct est la suivante :
a {
color: inherit;
}
<p>The default color of the html element is black. The default colour of the body and of a paragraph is inherited. This
<a href="http://example.com">link</a> would normally take on the default link or visited color, but has been styled to inherit the color from the paragraph.</p>