Tables once played a very important role in web page development - layout. Even in Web 2.0, we can still see their layout. However, as technology continues to advance, the Div+Css combination has finally opened the door to the old-fashioned layout and ushered in a new wave of layout. What followed were new and old grudges, and many people, whether they had opinions about tables or not, began to criticize them - bloated code, semanticless tags, complicated writing methods, etc. Remember, tables were not originally created for layout, but for displaying data. Abandoning the table layout does not mean abandoning the table itself. What can I use to save you, my table? What is a table? Table is an Html table, a carrier of data. The following is a relatively standard table code writing method: Copy code The code is as follows:<table border="0" cellspacing="0" cellpadding="0" width="100%"> <tr> <th>Month</th> <th>Date</th> </tr> <tr> <td>AUG</td> <td>18</td> </tr> </table> A simple HTML table consists of a table element and one or more tr, th, or td elements. The tr element defines the table rows, the th element defines the header cells, and the td element defines the table cells. The border attribute specifies the width of the table border, cellpadding specifies the space between the cell edge and its content, and cellspacing specifies the space between cells. We generally manually set these three attributes to 0 to avoid browser differences. The width attribute specifies the width of the table, because the width of the table changes with the width of the internal elements. In common cases, we hope that the table is the same width as the external container, so the default width is often set to 100% to fill the container. The table-layout:fixed attribute that must be mentioned table-layout: auto (default) | fixed. parameter: auto: The default automatic algorithm. The layout will be based on the contents of each cell. The table will not be displayed until each cell is read and calculated, which is very slow. Working steps of fixed layout model: Generally, when you are making complex table HTML, sometimes you will find that no matter how you adjust the width of each column in the first row, the column width will still change unexpectedly (for example, if there is a long string of English text with no spaces in the middle, you want to limit the width of this column so that the long text is forced to wrap and does not break the table, but often the result is that you can't adjust the width to the appropriate width). At this time, you are helpless and you can use table-layout:fixed. Table line break problem Using a table to display data can sometimes be a headache, that is, displaying a certain paragraph of text without wrapping it to the next line, especially in the table header, which is used most often. In fact, your headache is not the line break, but the browser compatibility behind it, which makes the line break much more difficult. Here, you can check out the article "Strategies for forced line breaks and forced non-line breaks" for inspiration, which discusses in detail how to manage line breaks in different situations. In general, the way I recommend for line breaks in a table is: first set table-layout:fixed for the table. Basically, after setting this property, the basic line break problems can be solved and the situation where the td and th in the table grab the width of other td and th will not occur due to the amount of content in it. If you still have the problem of forced line breaks at this time, then add a div layer inside this td, and then use the two CSS methods word-wrap:break-word; word-break:break-all; to solve the line break problem. Several common and unfamiliar table tags thead, tfoot, and tbody These three tags are products of so-called xhtml, and they primarily give you the ability to group rows in a table. When you create a table, you probably want to have a header row, some rows with data, and a total row at the bottom. This division enables browsers to support scrolling of the table body independently of the table header and footer. When long forms are printed, the table header and footer may be printed on each page that contains the table data. Personally, I think its main use is to optimize the display of very long tables. thead tag represents the HTML table header thead tag represents the HTML footer The tbody tag represents the HTML table body Note: If you use thead, tfoot, and tbody elements, you must use all of them. They appear in the order: thead, tfoot, tbody, so that the browser can render the header and footer before receiving all the data. You must use these tags inside a table element and the thead must have a tr tag inside it. So the more standard way to write a table is as follows: Copy code The code is as follows:<table border="0" cellspacing="0" cellpadding="0" width="100%"> <thead> <tr> <th>Month</th> <th>Date</th> </tr> </thead> <tfoot> <tr> <th>Month Lists</th> <th>Date Lists</th> </tr> </tfoot> <tbody> <tr> <td>AUG</td> <td>18</td> </tr> </tbody> </table> Personally, I think this thing is useless, useless to use and a pity to throw away. Small projects can add some semantics, but because we have encountered the dilemma of having multiple different table headers displayed in the same table, which limits future development, formal projects should use these tags with caution from the perspective of scalability. col and colgroup These two tags are also products of xhtml. They are powerful but have poor compatibility. The col tag defines attribute values for one or more columns in a table. The colgroup tag is used to group columns in a table for formatting purposes. Their main function is to control the width of the cell, which saves the trouble of defining each cell separately. In the past, we often defined the width on th or td in the first row to specify the width of each column, while col can not only define the width but also other attributes at the same time. For example, col can be used to control the sum of the widths of several columns and the background color of the column. But ideals are full and reality is skeletal. As mentioned before, greater functions do not mean greater compatibility. According to existing tests, there are only two applications where col and colgroup can play a role and ensure compatibility: width and background. For width, I prefer to use the conventional method, setting the width in the first row to ensure the column width. As for background, it is rare to use different backgrounds in a large area of a table in practice. Therefore, I personally think: try not to use it if possible. Where to use table Personally, I think that in a container where data is very dense and serialized, it is correct to use a table. The most common example is our common shopping order settlement page, which lists your order details: product name, unit price, purchase quantity, subtotal, shipping fee, etc., and finally there is a final order amount at the bottom. The table is like a fish in water here, achieving the magical effect of a data carrier. The above is a review of common table knowledge points, and an analysis and summary of several commonly used places. I hope that after reading this article, you will view and use tables with the correct attitude. I hope this article can save you a little, my table. Thanks. |
<<: Two ways to solve the problem of MySQL master-slave database not being synchronized
>>: Classification of web page color properties
environment: 1 CentOS Linux release 7.5.1804 (Cor...
Regarding the nginx panic problem, we first need ...
After I analyzed the Taobao details page last time...
1. Introduction Docker has an orchestration tool ...
You can see that their visual effects are very bea...
Just add the following code to achieve it. Method ...
In Google Chrome, after successful login, Google ...
A few days ago, a colleague received a points mal...
Overview As for the current default network of Do...
Take zabbix's own WEB interface as an example...
What products do you want to mention? Recently, t...
All the following codes are between <head>.....
Table of contents 1. What is Promise? 2. Why is t...
This article attempts to write a demo to simulate...
Preface The string types of MySQL database are CH...