-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex1.html
More file actions
68 lines (48 loc) · 928 Bytes
/
ex1.html
File metadata and controls
68 lines (48 loc) · 928 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<style>
#d1{
background-color: #FF4DA3;
width: 100%;
height: 100px;
margin: 0px 0px 10px 0px;
display: inline-block;
}
#d2{
background-color: #FF037E;
width: 65%;
margin: 0px 5px 10px 0px;
display: inline-block;
}
#d3{
background-color: #CE0468;
width: 34%;
margin: 0px 0px 10px 0px;
display: inline-block;
}
#d4{
background-color: #802755;
width: 100%;
display: inline-block;
}
</style>
</head>
<body>
<div id="d1"></div>
<div id="d2"></div>
<div id="d3"></div>
<div id="d4"></div>
<script>
var a = $(window).height();
a = 0.93*a;
h1 = h4 = a/5;
h2 = h3 = 3*a/5;
$("#d1").css("height", h1);
$("#d2").css("height", h2);
$("#d3").css("height", h3);
$("#d4").css("height", h4);
</script>
</body>
</html>