As per the information provided on this website:
The HTML5 table contains col tags...
<table width="100%">
<col style="width:40%">
<col style="width:30%">
<col style="width:30%">
<tbody>
<tr>
<th>Fruits</th>
</tr>
</tbody>
</table>
....
... but I am struggling to find a way to interact with them in a programmatically generated table.
For instance, I can create the table in this manner:
Dim Table As New WebControls.Table
Dim Row As New WebControls.TableRow
Dim Cell As New WebControls.TableCell
Cell.Text = "Fruits"
Row.Cells.Add(Cell)
Table.Rows.Add(Row)
How can I access the col tags to apply style information to them?
https://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.table(v=vs.110).aspx
Is it feasible with .NET?
(the programming language used is not relevant - translation can be provided)