Making a td fill table width
Use the "colspan" property of td. Ex:
<td colspan=75%> info </td>
Just add width: 100%
to first td
and browser will fill it's width automatically.
Solved adding the width:100%
to the table.
http://jsfiddle.net/HRT5E/1/
table {
width:100%;
}