Quote:
Originally Posted by Karellen
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.