I have been attempting to insert text above each column in Colspan
without success.
https://i.sstatic.net/MxQPj.png shows the image of how I want the columns in colspan
to be displayed as 1 2 3 4 5 O, but I am unsure of how to achieve this.
Here is an example of my code:
<thead>
<tr>
<th width="30%">
@DbResHtml.T("Натпреварувач", "Resources")
</th>
<th width="1%">
@DbResHtml.T("Бр.", "Resources")
</th>
<th width="1%">@DbResHtml.T("ВИ", "Resources")</th>
<th width="1%">
@DbResHtml.T("П.", "Resources")
</th>
<th colspan="6" scope="colgroup">
@DbResHtml.T("Грешки", "Resources")<br>
@DbResHtml.T("12345O", "Resources")
</th>
</tr>
</thead>
Tbody
code is not included for clarity.