Question sur le CSS [resolu]
Publié : 13 sept. 2004, 17:35
Voila le code CSS d'un pote (et oui pas tres grand le code
)
Et voici ma question; Pour un code aussi petit mieux vaut il faire un fichier nom.css ou rajouter dans la page xhtml:
Votre avis ?

Code : Tout sélectionner
#global {
text-align: center;
font-family: Courier New;
}
body {
background-image: url(../styles/background.jpg);
font-family: verdana,arial,helvetica,sans-serif;
font-size: 0.8em;
}
img {
border-width: 0
}
Code : Tout sélectionner
<style type="text/css">
#global {
text-align: center;
font-family: Courier New;
}
body {
background-image: url(../styles/background.jpg);
font-family: verdana,arial,helvetica,sans-serif;
font-size: 0.8em;
}
img {
border-width: 0
}
</style>