Hacker News new | ask | show | jobs
by temp129038 2562 days ago
I didn’t find this particularly insightful, and disagree with many of the points made.

First of all the post is arguing for more semantic HTML and says nothing about using semantic HTML5 tags over <div>? AFAIK semantic tags didn’t even exist before HTML5 which is definitely not the 90s.

I also find using the <table> element generally be bad practice. There are much better/easier ways to build responsive tables using grid or flexbox than dealing with <tr>/<thead>/<td> everywhere.

1 comments

> I also find using the <table> element generally be bad practice. There are much better/easier ways to build responsive tables using grid or flexbox than dealing with <tr>/<thead>/<td> everywhere.

Try using that monstrosity in a screen reader. You completely break vertical/column navigation. Hardly better.