How to modify the table row height in layui: first open the corresponding front-end code file; then set the height and line-height styles of the data table cells at the same time, the code is such as ".layui-table-cell{height:36px ;line-height: 36px;}".
Recommended: "layUI Tutorial"
Layui data table adjustment row height
Set the height and line-height styles of the data table cells at the same time, and the attribute values must be consistent
.layui-table-cell{ height:36px; line-height: 36px; }
The above is the detailed content of How to modify table row height in layui. For more information, please follow other related articles on the PHP Chinese website!