-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBootstrapTwo.html
More file actions
35 lines (29 loc) · 1018 Bytes
/
BootstrapTwo.html
File metadata and controls
35 lines (29 loc) · 1018 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
<!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">
<style type="text/css">
.fill {
border: 1px solid black;
background-color: yellow;
}
</style>
</head>
<body>
<!-- A little less help this time. You'll need to add the remaining divs, and use the fill class from the style defined at the top of the doc. -->
<div class="fill col-xs-6 col-sm-6 col-md-3 col-lg-3">This first column will be too large when the rows wrap, so you have to figure out how to get the second row to display properly.</div>
<div class="fill col-xs-6 col-sm-6 col-md-3 col-lg-3">
Second
</div>
<div class="clearfix visible-sm-block visible-xs-block">
</div>
<div class="fill col-xs-6 col-sm-6 col-md-3 col-lg-3">
Third
</div>
<div class="fill col-xs-6 col-sm-6 col-md-3 col-lg-3">
Fourth
</div>
</body>
</html>