-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBootstrapThree.html
More file actions
49 lines (37 loc) · 964 Bytes
/
BootstrapThree.html
File metadata and controls
49 lines (37 loc) · 964 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- You'll need to add a bit of your own styling to get the desired result. -->
<style type="text/css">
.black {
background-color: #000;
height: 200px;
}
.blue {
background-color: rgb(0, 117, 255);
height: 200px;
}
.red {
background-color: rgb(255, 0, 0);
height: 200px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="black col-sm-6 col-md-6 col-lg-6">
</div>
<div class="clearfix visible-xs-block">
</div>
<div class="blue col-sm-6 col-md-3 col-lg-3">
</div>
<div class="red col-md-3 col-lg-3 visible-lg-block visible-md-block">
</div>
</div>
</div>
</body>
</html>