-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolumns0.html
30 lines (27 loc) · 914 Bytes
/
columns0.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<style>
.row>div{
padding: 20px;
background-color:green;
border:2px solid black;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-3">this is 1 section.</div>
<div class="col-3">this is 2 section.</div>
<div class="col-3">this is 3 section.</div>
<div class="col-3">this is 4 section.</div>
</div>
</div>
</body>
</html>