Question du test HTML5/CSS3

Donné un tableau, vérifier s'il est valide.

Difficile

Parmi les affirmations suivantes, laquelle est vrai à propos de ce tableau ?

<table cellspacing="0" cellpadding="0">
    <caption>Liste de mes fromages préférés</caption>
    <thead>
        <tr>
            <th scope="col">Fromage</th>
            <th scope="col">Origine géographique</th>
            <th scope="col">AOC ?</th>
        </tr>
    </thead>
    <tr>
        <th scope="row">Boursin</th>
        <th>Normandie</th>
        <th data-value="false">Non</th>
    </tr>
    <tr>
        <th scope="row">Morbier</th>
        <th>Franche-Comté</th>
        <th data-value="true">Oui</th>
    </tr>
</table>
Auteur: Vincent CotroStatut : Publiée(Mise à jour)Question passée 167 fois
Modifier
0
Évaluations de la communautéPersonne n'a encore évalué cette question, soyez le premier !