-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.html
More file actions
29 lines (28 loc) · 842 Bytes
/
Copy pathtest.html
File metadata and controls
29 lines (28 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" media="screen" href="https://cdn.staticfile.org/layui/2.11.6/css/layui.min.css">
<script src="https://cdn.staticfile.org/layui/2.11.6/layui.min.js"></script>
</head>
<body>
<div class="layui-container">
<div class="layui-row">
<!-- grid 布局 -->
<div class="layui-grid">
<div class="layui-grid-item">
<div class="layui-card">
<div class="layui-card-header">卡片面板</div>
<div class="layui-card-body">
<div class="layui-card-body">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>