JSFiddle - React, Tailwind, and code Playground

by ZenMaster

HTML

<table class="sometable" border="1">
    <thead>
        <tr>
            <th colspan=2><div class="headerImage"></div>Countries visited</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>United States</td><td>North America</td>
        </tr>
        <tr>
            <td>Canada</td><td>North America</td>
        </tr>
    </tbody>
</table>

CSS

body
{
    font-family: Arial,Verdana,sans-serif;
    font-size: 11px;
}

.sometable thead tr th div
{
    background-image: url('http://smartgwt.googlecode.com/svn/tags/1.2/samples/showcase/war/images/pieces/16/cube_green.png') 0 0;
    height: 16px;
    width: 16px;
    float: left;
    margin: 0 2px;
}

.headerImage
{
    background-image: url('http://smartgwt.googlecode.com/svn/tags/1.2/samples/showcase/war/images/pieces/16/cube_green.png');
    height: 16px;
    width: 16px;
    float: left;
    margin: 0 2px;
}