simonw / til

Today I Learned
https://til.simonwillison.net
Apache License 2.0
1.08k stars 85 forks source link

Add borders for tables in TILs #42

Closed simonw closed 2 years ago

simonw commented 2 years ago

e.g. on https://til.simonwillison.net/sqlite/simple-recursive-cte

image

And these others: https://til.simonwillison.net/tils/til?html__contains=%3Ctable&_sort_desc=updated_utc

simonw commented 2 years ago

https://til.simonwillison.net/svg/dynamic-line-chart is a better example:

image
simonw commented 2 years ago

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;
}
simonw commented 2 years ago

Demo: https://til.simonwillison.net/svg/dynamic-line-chart