Voici mon test html complet:
<!DOCTYPE>
<html>
<head>
<title>DIV Font</title>
<style>
.my_text
{
font-family: Arial, Helvetica, sans-serif
font-size: 40px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="my_text">some text</div>
</body>
</html>
Les attributs font-family & font-size sont ignorés.
Pourquoi? Pourquoi le poids de police est-il utilisé? Que dois-je faire pour pouvoir spécifier la famille de polices et la taille de police?
Merci
Vous avez besoin d'un point-virgule après font-family: Arial, Helvetica, sans-serif
. Cela rendra votre code mis à jour le suivant:
<!DOCTYPE>
<html>
<head>
<title>DIV Font</title>
<style>
.my_text
{
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="my_text">some text</div>
</body>
</html>
Ajoutez un point-virgule à la ligne suivante pour résoudre le problème.
font-family: Arial, Helvetica, sans-serif;