-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfloat_responsive.html
32 lines (29 loc) · 1.09 KB
/
float_responsive.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
31
32
<!DOCTYPE html>
<html>
<head>
<title>CSS</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="./style/reset.css" />
<link rel="stylesheet" type="text/css" href="./style/main.css" />
<link rel="stylesheet" type="text/css" href="./style/float_responsive.css" />
</head>
<body>
<h4 class="bold m-bottom10">Example 1:</h4>
<div class="main-cont border bw3 bc0 bold clearfix">
<div class="cell border bw6 bc1 right">div1</div>
<div class="cell border bw6 bc1 left">div2</div>
<div class="cell border bw6 bc1 left">div3</div>
</div>
<br/>
<h4 class="bold m-bottom10 m-top20">Example 2:</h4>
<div class="main-cont border bw3 bc0 bold clearfix">
<div class="cell border bw6 bc1 right">div1</div>
<div class="border bw3 bc2 left">
<div class="cell border bw3 bc1 right">div2</div>
<div class="cell border bw3 bc1 left">div3</div>
</div>
<div class="cell border bw6 bc1 right">div4</div>
<div class="cell border bw6 bc1 left">div5</div>
</div>
</body>
</html>