Preface In the background management system of a recent project, ElementUI was used when writing the front-end interface, but it was found that the height of the table header was always very high after importing the data table, as shown in the following figure: I searched a lot for solutions on the web, but to no avail. After a lot of hard work, I finally solved this problem and recorded it here. Tip: The following is the main content of this article. The following cases can be used for reference 1. Cause of the problem When checking the code on the web page, I found that there was no style to set the height of the table header. The height of the header will only change when the The reason is that the 2. Solution Delete the Summarize The above is the method to modify the header. When a layout container is used, check the layout container first, and then modify the single component. I have searched many methods on the Internet before, but none of them can solve my current problem. In the future, I must understand where the problem lies before solving it. Vue modifies the height and background color of elementUI table tr th/* Set the background color of the table header */ .el-table__header th, .el-table__header tr { background-color: #17B3A3; color: black; } /* Set the height of the table body */ .el-table__body td,.el-table__body th{ padding:1px; } /* Set the height of the table header */ .el-table__header td,.el-table__header th{ padding:6px 0px; } /* Set the pager height */ .site-wrapper .el-pagination { margin-top: 5px; text-align: right; } .el-pager li.active { color: #080909; cursor: default; background-color: #17B3A3; border-radius: 2px; } This is the end of this article about solving the problem of Element table header row height. For more relevant Element table header row height content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
There are two files a.htm and b.htm. In the same d...
There are two types of web page box models: 1: Sta...
Table of contents 1. Several syntaxes of Insert 1...
In new projects, axios can prevent duplicate subm...
Table of contents 1. Timer monitoring 2. Event mo...
This article shares the tutorial of MySql install...
Table of contents 1. substring() 2. substr() 3.in...
illustrate: VMware IOInsight is a tool that helps...
The installation and configuration method of MySQ...
Use Code Cloud to build a Git code storage wareho...
Table of contents background Function Purpose Ide...
1. Download 2. Decompression 3. Add the path envi...
Table of contents 1. Draw a circle 2. Circle move...
Table of contents Initialization of echart app-ba...
jQuery form validation example / including userna...