Je suis désolé si je me trompe d'endroit pour poster ce message, étant tout nouveau ici, j'espère que vous me pardonnerez.
Je suis en train d'apprendre le XHTML et ai essayé un code d'un ouvrage que je vous livre ici:
Code : Tout sélectionner
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Tableau élémentaire</title>
<style type="text/css">
.gras {font-weight: bold; background-color: red; }
.prix {background-color: yellow; }
.date {background-color: #AAA; color: blue; }
</style>
</head>
<body>
<h1>Groupements et colonnes</h1>
<table border="5" width="100%" rules="groups" summary="Facture de livres" cellpadding="5">
<caption><big>Facture de votre commande de livres</big></caption>
<!-- Groupe 1: dates -->
<colgroup id="date" span="1" width="10%" align="center" class="date"></colgroup>
<!-- Groupe 2: Titre et Auteur -->
<colgroup id="titre" span="2" width="25%" align="left" class="gras"></colgroup>
<colgroup id="prix" span="3" align="right" class="prix" ><col width="10%" /><col span="2" width="15%" /></colgroup>
<thead><tr><th>Date</th><th>Titre</th><th>Auteur</th><th>Quantité</th><th>Prix unitaire</th><th>Prix total</th></tr>
</thead>
<tfoot><tr><th>Date</th><th>Désignation</th><th>Auteur</th><th>Quantité</th><th>Prix unitaire</th>
<th>Prix total</th></tr></tfoot>
<tbody>
<tr>
<td>29/05/2005</td><td>XHTML Design</td><td>Jeffrey Zeldman</td><td>3</td>
<td>32.00 €</td><td>96.00 €</td>
</tr>
<tr>
<td>15/06/2005</td><td>CSS 2</td><td>Raphael Goetter</td><td>2</td><td>30.00 €</td><td>149.50 €</td>
</tr>
<tr>
<td>10/09/2005</td><td>XHTML et CSS</td><td>Jean Engels</td><td>5</td><td>29.90 €</td><td>149.50 €</td>
</tr>
</tbody>
</table>
</body>
</html>
Est-ce moi qui ai manqué quelque chose ou bien est-ce un problème lié à Firefox?
Merci pour l'attention que vous aurez portée à mon message.
Stefan
Message envoyé avec : Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10.5; fr; rv:1.9.0.11) Gecko/2009060214 Firefox/3.0.11