JSFiddle - React, Tailwind, and code Playground
by rusev
HTML
<table id="grid">
<thead>
<tr>
<th data-field="one">One</th>
<th data-field="two">Two</th>
<th data-field="three">Three</th>
</tr>
<tr>
<td colspan="3">Title</td>
</tr>
</thead>
</table>
CSS
#grid .k-grid-header td:nth-child(1){
text-align: center;
}
JavaScript
$("#grid").kendoGrid({
scrollable: false,
sortable: true,
dataSource: [{one: 1, two: 2, three: 3}, {one: 4, two: 5, three: 6}]
});