Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
    table { border-spacing: 0; padding: 0; border: none; }
    td { border: none; padding: 0; }
    td { width: 1.2em; height: 1.2em; }
    #one { background: #FF0000; }
    #two { background: #FFFF00; }
    #three { background: #00FF00; }
    #four { background: #00FFFF; }
    #five { background: #0000FF; }
    #six { background: #FF00FF; }
</style>
<body>
    <p>Each column in the following table should have every cell the
    same color, except for the checkerboard pattern at the right and
    left used to indicate the row positions.</p>
    <table>
        <tr>
            <td style="background: white"> </td>
            <td id="one"> </td>
            <td id="two"> </td>
            <td id="three"> </td>
            <td id="four"> </td>
            <td id="five"> </td>
            <td id="six"> </td>
            <td style="background: black"> </td>
        </tr>
        <tr>
            <td style="background: black"> </td>
            <td id="one"> </td>
            <td id="two"> </td>
            <td id="three"> </td>
            <td id="four"> </td>
            <td id="five"> </td>
            <td id="six"> </td>
            <td style="background: white"> </td>
        </tr>
        <tr>
            <td style="background: white"> </td>
            <td id="one"> </td>
            <td id="two"> </td>
            <td id="three"> </td>
            <td id="four"> </td>
            <td id="five"> </td>
            <td id="six"> </td>
            <td style="background: black"> </td>
        </tr>
        <tr>
            <td style="background: black"> </td>
            <td id="one"> </td>
            <td id="two"> </td>
            <td id="three"> </td>
            <td id="four"> </td>
            <td id="five"> </td>
            <td id="six"> </td>
            <td style="background: white"> </td>
        </tr>
    </table>
</body>