-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss-grid.html
More file actions
37 lines (33 loc) · 1.1 KB
/
css-grid.html
File metadata and controls
37 lines (33 loc) · 1.1 KB
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
30
31
32
33
34
35
36
37
<!DCTYPE html>
<html lan="eng">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width,initial-scale=.0"/>
<title>CSS Gride</title>
<style>
.parent{
border:5px solid black;
display:grid;
grid-template-rows:repeat(5,40px);
grid-template-columns:50px 50px ;
grid-gap:5px;
}
.child{
border:2px dashed gray;
}
</style>
<link rel="stylesheet" href="css-grid-style.css"/>
</head>
<body>
<div class="parent">
<div id="f1" class="child">Item 1</div>
<div id="f2" class="child">Item 2</div>
<div id="f3" class="child">Item 3</div>
<div id="f4" class="child">Item 4</div>
<div id="f5" class="child">Item 5</div>
<div id="f6" class="child">Item 6</div>
<div id="f7" class="child">Item 7</div>
<div id="f8" class="child">Item 8</div>
</div>
</body>
</html>