col css code example
Example 1: add css to class=["col-"]
[class*="col-"] {
border-color: red;
}
Example 2: col tag in html
<!-- use the scope tag -->
<table>
<tr scope="col">Column</tr>
<tr scope="row">Row</tr>
</table>
[class*="col-"] {
border-color: red;
}
<!-- use the scope tag -->
<table>
<tr scope="col">Column</tr>
<tr scope="row">Row</tr>
</table>