我的意思是,我写了一个html页面,其中引用了layui的table表格,引用了layui.css文件,但是现在我想把表格的行高设置的高一些,请给出完整的html示例代码
时间: 2024-05-04 22:20:39 浏览: 94
layui 设置table 行的高度方法
好的,以下是一个完整的 HTML 示例代码,其中使用了 layui 的 table 表格,并且将表格的行高设置为 50px:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>表格行高设置示例</title>
<!-- 引入 layui 的 css 文件 -->
<link rel="stylesheet" href="https://cdn.staticfile.org/layui/2.5.7/css/layui.min.css">
</head>
<body>
<!-- 定义一个包含表格的容器 -->
<div class="layui-container">
<!-- 定义一个表格 -->
<table class="layui-table" lay-skin="line">
<thead>
<tr>
<th>编号</th>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
</tr>
</thead>
<tbody>
<tr style="height: 50px;">
<td>1</td>
<td>张三</td>
<td>18</td>
<td>男</td>
</tr>
<tr style="height: 50px;">
<td>2</td>
<td>李四</td>
<td>20</td>
<td>女</td>
</tr>
<tr style="height: 50px;">
<td>3</td>
<td>王五</td>
<td>22</td>
<td>男</td>
</tr>
</tbody>
</table>
</div>
<!-- 引入 layui 的 js 文件 -->
<script src="https://cdn.staticfile.org/layui/2.5.7/layui.min.js"></script>
</body>
</html>
```
在上面的代码中,我们使用了 `style` 属性来定义表格行的高度,这里设置为 50px。你可以根据自己的需要来设置行高。另外,我们还引入了 layui 的 css 文件和 js 文件,这是使用 layui 的 table 表格必须要做的一件事情。
阅读全文