Should Tables be avoided in HTML at any cost?

后端 未结 27 2391
生来不讨喜
生来不讨喜 2020-12-01 01:56

It is advisable to use tables in HTML pages (now that we have CSS)?

What are the applications of tables? What features/abilities does tables have that are not in CSS?

27条回答
  •  醉梦人生
    2020-12-01 02:46

    Tables are for outputting tabular data. Anything that you might display in a spreadsheet, columns of results, that kind of thing.

    The suggestion of using CSS rather than tables is for columnar layouts, which weren't really actual tables. It was never intended to suggest that tables should be removed completely.

提交回复
热议问题