I am looking to create a table similar to the one shown above.
Here is my implementation. Please review my JSFiddle.
HTML:
<table border="0" id="cssTable">
<tr>
<td>eredgb</td>
<td><a href="self">04-Milwaukee</a></td>
<td>705</td>
<td>sdfdfdfed</td>
<td>298</td>
</tr>
<tr>
<td>sdfsdfsdfsdfsdf</td>
<td><a href="self">04-Milwaukee</a></td>
<td>705</td>
<td>content2</td>
<td>298</td>
</tr>
<tr>
<td>sdfsdfsdfsdfsdf</td>
<td><a href="self">04-Milwaukee edh walkohnykuohbnbd</a></td>
<td>705</td>
<td>content1</td>
<td>298</td>
</tr>
</table>
CSS:
#cssTable{
margin-left:20px;
}
How can I achieve a layout like the screenshot provided? I want to ensure equal spacing and fixed width for each table cell content.