When is the table used? Nowadays, tables are generally no longer used for the overall layout of a web page. However, when faced with certain specific designs, such as form input and data presentation, tables may be the most appropriate choice. The most intuitive impression of a table is that it is an element composed of multiple cells arranged neatly, and you can clearly see the rows and columns. This can be associated with Excel. From Excel's position in data processing and statistics, we can understand the significance of tables on web pages. Simply put, using a table will make things much easier when you can intuitively feel that multiple elements are arranged in rows and columns. For example, the table is used in caniuse.com: Table layout calculation Using a table is simple, but sometimes the final state of each grid in the table may not be what you want. For example, if some cells have line breaks, the entire table will look very unsightly because of the line breaks. Especially for tables used for data presentation, width allocation is a very important topic. You may need to carefully calculate the total width of the table based on the data that may be presented in each column. This is because the table has its own characteristics in layout. It will follow certain principles and determine its actual layout through calculation. Next, this article uses an actual table test example to explore how the table calculates its own layout. This article only covers the most common ways to use tables and does not cover all situations. Different browsers interpret some concepts of tables differently, but the layout calculations are basically the same (if there are differences, they will be mentioned separately). The test tables used below will all look like this (the content is taken from Zero Tracks): At the same time, the table will set border-collapse:collapse; and border-spacing:0;. This is also the most common way to apply tables. Normalize.css uses this part as the initialization definition. The table-layout CSS property defined on the <table> element determines the algorithm used by the table when calculating layout. It has two values, auto and fixed. In general, the default value auto is used. The difference between these two algorithms lies in whether the width layout of the table is related to the data content in the table. This article will discuss the layout calculation principles of the table for these two types of values. The characteristic of automatic table layout is that the width layout of the table is related to all the data content in the table. It needs to obtain all the table content before determining the final width layout and then display them together. It seems that the key point is "content relevance". What happens if the table defines a fixed width (500px here) and all cells do not define a width (only CSS-defined width is discussed)? Let’s look at the results: In the table above, the blank parts are filled with spaces. After comparison, we can find the following points: Columns 2 and 3 are the same width. Each cell has no defined width, so the width layout is completely determined by the specific content data (text information). How to explain such results? You can first intuitively infer the following logic: Step 1: Select the column with the most text content (under the condition of no line breaks, the width occupied by the text is the widest) from each column as the "representative". Referring to the above logic, let’s look back at the previous table. Doesn’t it make some sense? Note that it said earlier that the width ratio "seems" to be 2:1, what would this be? Let’s look at a version without the padding: Use the front-end debugging tool to take a closer look at the width of the cells above. You will find that this table is different from the previous one, and the ratio is very close to 2:1 (yes, there is this little bit because of the border, but without the border, the columns cannot be distinguished). It can be seen that when analyzing the width ratio, the content width, padding, and border are all taken into account. This also shows that it is not the number of characters that is measured, but the width that the characters can occupy without wrapping (the 2:1 here comes from the fact that Chinese characters are of equal width). The use of padding is of course just to make the table more beautiful :). What happens when there is a width definition? Here is a table with some cells having widths defined: Its corresponding html code is: XML/HTML CodeCopy content to clipboard
The following points can be found in the above table: The actual width of a cell set to 5px is 13px, which is exactly the width of a single Chinese character. The cells with Chinese characters in the same column arrange the text in the form of the minimum cell width (so, the line breaks). The inference of this is that when there are both columns with and without width definitions: If the defined width of a cell is smaller than the minimum arrangement width of its content (the width required for the cell when as many rows as possible are arranged in the cell, as opposed to the non-wrapped arrangement), the column where the cell is located will present the content in the minimum arrangement. The one at the front that has no width definition can be regarded as case 1. Some columns here have width definitions, while some do not, which can be regarded as case 2. Here is case 3, when all columns have widths defined: Corresponding html code: XML/HTML CodeCopy content to clipboard
In the table above, the padding is removed so the values can be clearly defined by the width, resulting in a width ratio of 2:1:1 for the three columns. There is another condition here, that is, the width of the content in the cell does not exceed the defined width value. After testing, IE7 and below behave differently from other browsers when the content exceeds the defined width. From this table example, we can know that if all columns have width definitions, and the sum of the values of these width definitions is less than the width of the table, the table will continue to allocate the remaining width to them according to their width ratio after allocating the widths corresponding to their width definition values. The above is an analysis of three situations when the automatic table layout is used and the table itself defines a fixed width. If the table itself does not define a width, there will be more situations, and it will be related to the table's containing block (details). If there is a suitable opportunity in the future, we will discuss it again (the so-called article length is limited...). The characteristic of fixed table layout is that the width layout of the table is independent of the data content in the table. It only needs to receive the information of the first row of the table to determine the final width layout and start displaying. Fixed table layout is "content-independent" and it emphasizes the "first row". Take a look at the following table example: Corresponding html code: XML/HTML CodeCopy content to clipboard
The logic of fixed table layout is much simpler and is expressed as follows: Only take the information of the first row, ignoring the content of all cells after the first row and the width definition It is also important to note that when using a fixed table layout, you must define a width for the table element. If its width is not defined (that is, the default value of auto), the browser will use an automatic table layout instead. In fact, there are other elements related to tables, such as <colgroup>, <thead>, <tfoot>, <caption>, etc., but they are not needed in the most common usage. In fact, they are also taken into account in the table's layout calculations. Add to that the case of cell merging, and you can probably imagine how complicated table layout calculations are. The W3C document mentions that table layout calculation (automatic table layout) has not yet become a specification. For W3C's description of table layout calculations, see Table width algorithms. In fact, making such detailed inferences about the calculation principles of table layout is not very practical. It's just that it would be helpful to have this information as a reference when you need to work out the details, although such opportunities are rare. However, we can draw a more meaningful conclusion based on the content of this article: if the table defines the width and all cells do not define the width, then the automatic layout table will try its best to keep all your data from wrapping. If you encounter a situation where wrapping affects the appearance, it means that you must streamline the data or reduce the margins instead of trying to redo the width allocation yourself. This time, when doing this kind of actual measurement and inference, I feel that it would be easier to understand if I explain it in detail according to the specific situation rather than presenting it in a systematic and complete manner all at once. Maybe it can be regarded as a language exercise? |
<<: Detailed use cases of MySql escape
>>: An article explains Tomcat's class loading mechanism
Designing navigation for a website is like laying...
Table of contents Difference between char and var...
1. Introduction This article does not have screen...
Table of contents What is MVCC MVCC Implementatio...
1. Create a SpringBooot project and package it in...
Preface Recently, due to work reasons, I was work...
1. MYSQL installation directory Copy the code as ...
Table of contents 1. Introduction 1.1 Babel Trans...
In the previous blog, we learned about the usage ...
Table of contents Preface 1. What variables are p...
Hyperf official website Hyperf official documenta...
1. Install tomcat8 with docker 1. Find the tomcat...
Table of contents 1. Introduction 2. Rendering 3....
Detailed Analysis of Iframe Usage <iframe frame...
This article uses an example to describe how to c...