Skip to content

Instantly share code, notes, and snippets.

@hungdev
Created May 11, 2020 10:42
Show Gist options
  • Save hungdev/5d571cb3bb5c9b3e7cbc101ebacea173 to your computer and use it in GitHub Desktop.
Save hungdev/5d571cb3bb5c9b3e7cbc101ebacea173 to your computer and use it in GitHub Desktop.
fixed last or first column table

https://stackoverflow.com/a/59795094/5826956

th:first-child, td:first-child{
    position: sticky;
    left: 0px;
    z-index: 1;
}
tr:nth-child(odd) > td{
    background-color: #ededed;
}
tr:nth-child(even) > td{
    background-color: #e2e2e2;
}
tr:nth-child(odd) > th{
    background-color: #d7d7d7;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment