How to deal with content overflow in the table

php中世界最好的语言
Release: 2018-01-23 10:25:20
Original
4150 people have browsed it

This time I will show you how to deal with the overflow of content in the table table. What are the precautions when dealing with the overflow of content in the table table. The following is a practical case, let's take a look at it together.

What is content overflow? In fact, when there is a lot of text, if the content area is only that long, then the extra part will be replaced by dots.

The case we are doing this time is in a table. We know that when we enter too much text in the table, it will mess up the table. For example, one line is too long or the line is automatically wrapped. But sometimes we want to display it in a row with a fixed width. If the extra part is replaced by dots, it will not clutter the table. So what to do?

Generally speaking we will use the following attributes

/*溢出部分样式*/  
.txt-ell {   
    whitewhite-space:nowrap;  //强制在一行显示   
    overflow:hidden;    //溢出的内容切割隐藏   
    text-overflow:ellipsis; //当内联溢出块容器时,将溢出部分替换为…   
    word-break:keep-all;  //允许在单词内换行   
    color: red;  //这里我自己标识一下   
    padding: 0 7px;  //由于想跟边线留有距离,所以设置了下   
}
Copy after login
.table-fix {   
    table-layout:fixed;     
}
Copy after login

First of all, the second style is specially added to the table tag. If you want to achieve content overflow, the table must have a fixed width and height. The tr and td inside the table must also have a fixed width and height. Before using content overflow, you must first add the table-fix class to the table. Then check whether your tr and td have given width. If not, it is best to give them a fixed width, or a percentage. I mainly give a percentage, and the outer table has a fixed width, and the tr and td inside It is the percentage width so that the content overflow style can be used. Finally, if there is a lot of content in any grid and you want to achieve a little bit, just add a .txt-ell class to this grid.

I believe you have mastered the method after reading these cases, and there will be more exciting things. Please pay attention to other related articles on php Chinese website!

Related reading:

Basic knowledge of HTML, detailed introduction to the style of hyperlink settings

Knowledge summary of HTML paragraphs

Knowledge summary of HTML text format

The above is the detailed content of How to deal with content overflow in the table. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!