dimitrijjedich / html-tutorial

0 stars 0 forks source link

horizontal dividers in table not working #19

Open dimitrijjedich opened 9 months ago

dimitrijjedich commented 9 months ago

The commit is container in his PR #18 (tabels)

the objective was to add a horizintal line to the table and was implemented using this css:

.divider tr {
    border-bottom: 10px solid black;
}

But it does not seem to work.

dimitrijjedich commented 9 months ago

It seems, that this Problem can be fixed by adding the property border-collapse set to collapse to the parent table.

dimitrijjedich commented 9 months ago

The above metntioned PR #22 fixes this problem for now. There ist a resulting ToDo, which is to find a way to remove the inline styling of the table and move it to the styles tags in the head element of the page.