Should I use tables when creating tables in HTML/CSS

Nic*_*oft 3 html css html-table

I have a beginner's question for web development. I am going to create a table in which I am having input fields which I will submit to the server.

What is the common practice for doing this? Should I use html-tables or should I build the tables using stylesheets for positioning and sizing cells, columns, etc.? If both are common practice, what are the pros and cons of using eithor of those?

Ara*_*tor 10

If the content is tabular in nature, logically structured in rows and columns, then the appropriate tags - the tags that describe the structure of the content - are table tags.

  • 是的,"桌子是邪恶的"座右铭实际上是"用于造型时桌子是邪恶的"(例如,当你使用桌子进行简单的垂直居中时).不将表格用于表格数据几乎与将表格用于其他目的一样糟糕. (2认同)