Is <table> still up to date? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

Is <table> still up to date?

Recently I learned a lot about CSS: float, flex-box, grid.... Do modern webdesigner still use table? What else is out of date(using modern browsers)

21st Apr 2019, 3:46 PM
Oma Falk
Oma Falk - avatar
3 Answers
+ 2
Modern frameworks still use <table> like bootstrap (https://getbootstrap.com/docs/4.3/content/tables/) or material in angular (https://material.angular.io/components/table/examples). It is hard to avoid such traditional data representation. All those grids and flexboxes are useful for make-up also, but can coexists with table where it is appropriate.
21st Apr 2019, 7:23 PM
Илья Кузнецов
Илья Кузнецов - avatar
+ 4
The flex-box and grid are used for the website LAYOUT while tables are used for presenting data. You can't(rather shouldn't) use flex-box in place of tables. And yes modern webdesigners still use tables
22nd Apr 2019, 2:32 PM
Victor Mbamara
Victor Mbamara - avatar
0
Pleased think of blind people also: To use the internet they need to use screen readers that output the contents via voice. But they read the html file from top to bottom, without taking care about positions (how would you position by tunes??). This can render a site completely unreadable for the blind, because the order the reader software outputs the contents may be completely different from the css Layout.
12th Jul 2019, 9:16 PM
Robert Niemann