Email list hosting service & mailing list manager

Table CSS for SRFI documents Lassi Kortela (11 Sep 2020 04:44 UTC)
Re: Table CSS for SRFI documents Arthur A. Gleckler (11 Sep 2020 05:03 UTC)
Re: Table CSS for SRFI documents hga@xxxxxx (11 Sep 2020 11:31 UTC)
Re: Table CSS for SRFI documents Lassi Kortela (11 Sep 2020 14:46 UTC)
Re: Table CSS for SRFI documents Arthur A. Gleckler (11 Sep 2020 18:09 UTC)
Re: Table CSS for SRFI documents Arthur A. Gleckler (11 Sep 2020 18:07 UTC)

Table CSS for SRFI documents Lassi Kortela 11 Sep 2020 04:44 UTC

Should https://srfi.schemers.org/srfi.css have some default styles for
<table> tags? The default defaults are not that convenient since table
cells have no visible borders. I've used something like this:

table {
   border-collapse: collapse;
}
table, td, th {
   border: 1px solid black;
}

We could also reserve the styling for <table class="table"> so as to not
disrupt existing tables relying on the HTML defaults:

table.table {
   border-collapse: collapse;
   border: 1px solid black;
}

table.table td, th {
   border: 1px solid black;
}