Sur la même page j'ai un lien que je veux avec une taiile d'écriture 15 px et un avec un taille de 10 px mais je n'arrive pas car il y en a un qui s' impose
Code : Tout sélectionner
<html>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="lientaille15.css" rel="stylesheet" type="text/css">
<link href="lientaille10.css" rel="stylesheet" type="text/css">
</head>
<body>
<p><a href="offre_emploi/resultat_offre_emploi.php">taille10</a></p>
<p><a href="offre_emploi/formulaire_offre_emploi.php">taille15</a></p>
</body>
</html>Code : Tout sélectionner
a:link {
font-size: 10px;
color: #000000;
text-decoration: none;
}
a:visited {
font-size: 10px;
color: #000000;
text-decoration: none;
}
a:hover {
font-size: 10px;
color: #FF0000;
text-decoration: none;
}
Code : Tout sélectionner
a:link {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 15px;
color: #000000;
text-decoration: none;
}
a:visited {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 15px;
color: #000000;
text-decoration: none;
}
a:hover {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 15px;
color: #FF0000;
text-decoration: none;
}