+ 1
Hello. I was wondering if someone could assist me in explaining why a table does not appear in my output despite using <table>.
4 odpowiedzi
+ 2
And sorry of my mistake. The right code must be: table, th, td {
border:1px solid grey;
border-collapse:collapse;
}
(th instead of tr)!!!
+ 1
In the css section, add this css code: table, tr, td {
border: 1px solid grey;
border-collapse:collapse;
}
+ 1
Thank you very much.
+ 1
Please to help you. In new html standard, it will not auto set the table border, so you will need to add it manually!