-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss08.html
More file actions
50 lines (47 loc) · 1.61 KB
/
Copy pathcss08.html
File metadata and controls
50 lines (47 loc) · 1.61 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
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>css08</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script>
<!-- Popper JS -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
<style>
div{
height: 50px;
border: thin solid blue;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 col-md-12 col-xl-12 col-sm-12">1</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-xl-3 col-sm-3">2</div>
<div class="col-lg-3 col-md-3 col-xl-3 col-sm-3">3</div>
<div class="col-lg-3 col-md-3 col-xl-3 col-sm-3">4</div>
<div class="col-lg-3 col-md-3 col-xl-3 col-sm-3">5</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-xl-4 col-sm-4">6</div>
<div class="col-lg-4 col-md-4 col-xl-4 col-sm-4">7</div>
<div class="col-lg-4 col-md-4 col-xl-4 col-sm-4">8</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-xl-4 col-sm-4">9</div>
<div class="col-lg-8 col-md-8 col-xl-8 col-sm-8">10</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-xl-6 col-sm-6">11</div>
<div class="col-lg-6 col-md-6 col-xl-6 col-sm-6">12</div>
</div>
</div>
</body>
</html>