View Single Post
Old 02-23-2024, 03:07 PM   #6
DrChiper
Bookish
DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.
 
DrChiper's Avatar
 
Posts: 1,029
Karma: 2003162
Join Date: Jun 2011
Device: PC, t1, t2, t3, Clara BW, Clara HD, Libra 2, Libra Color, Nxtpaper 11
Quote:
Originally Posted by Karellen View Post
I've tried to get repeating table headings working on the Libra 2 and never could. I guess the Libra 2 software ignores repeating table headers along with the <tfoot> tag.
Well, Libra 2 works with the <thead>, as my following construct is working for the header:
Code:
  thead tr td {
    border-bottom: solid 2px;
    background: #eee;
  }
I found this site also handy.

What is not working is the "zebra" setting (alternate row coloring):
Code:
  tbody tr:nth-child(even) {
    background: #eee;
  }
Currently the Libra 2 does not recognize the ":nth-child" selector and such. It does work on the PocketBook app though.
Oh well.

Last edited by DrChiper; 02-23-2024 at 03:09 PM.
DrChiper is offline   Reply With Quote