Upon receiving a project, I noticed that Bootstrap "span" classes were used in tables extensively.
I am questioning the validity of the markup below. Can you explain if it is valid or not, and why?
<table class="table">
<tr>
<td class="span6">Hello</td>
<td class="span3">World</td>
<td class="span3">2013</td>
</tr>
</table>
My instinct tells me that using Bootstrap's "span" classes to define column widths in tables may not be the best approach.