Question from the HTML5/CSS3 test

Given a table, check if it is valid.

Hard

Among the following statements, which one is true about this table?

<table cellspacing="0" cellpadding="0">
    <caption>My favorite cheeses list</caption>
    <thead>
        <tr>
            <th scope="col">Cheese</th>
            <th scope="col">Geographical origin</th>
            <th scope="col">AOC?</th>
        </tr>
    </thead>
    <tr>
        <th scope="row">Boursin</th>
        <th>Normandy</th>
        <th data-value="false">No</th>
    </tr>
    <tr>
        <th scope="row">Morbier</th>
        <th>Franche-Comté</th>
        <th data-value="true">Yes</th>
    </tr>
</table>
Author: Vincent CotroStatus: Published(Update)Question passed 167 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!