I'm attempting to customize the appearance of the datatables' CSS. Specifically, I want the first two columns to stand out by highlighting them in grey, while keeping the rest of the columns in their default color.
Here is the code snippet I tried using:
.grey {
background-color: rgba(128, 128, 128, .25);
}
<table>
<colgroup>
<col class="grey" />
<col class="grey" />
<col />
<col />
<col />
<col />
</colgroup>
<thead>
However, it seems that the datatables' default CSS is overriding my custom changes.