simonw / til

Today I Learned

Home Page:https://til.simonwillison.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add borders for tables in TILs

simonw opened this issue · comments

This will do:
CleanShot 2022-03-20 at 21 52 41@2x

table {
  border-collapse: collapse;
}
th, td {
  padding: 0.3em;
  border: 1px solid #D3D3D3;
}
th {
  background-color: #eee;
}