-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice file8.html
More file actions
40 lines (34 loc) · 811 Bytes
/
practice file8.html
File metadata and controls
40 lines (34 loc) · 811 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<style>
/* position relative absolute fixed sticky */
.box{
display: inline-block;
border: 2px solid red;
width: 150px;
height: 150px;
margin: 2px;
}
#box3{
/* relative to its normal position */
position: relative;
top: 34px;
left: 34px;
}
</style>
<div class="box" id="box1">1</div>
<div class="box" id="box2">2</div>
<div class="box" id="box3">3</div>
<div class="box" id="box4">4</div>
<br><br>
<br><br><br>
<a href="https://www.codewithharry.com/videos/web-development-in-hindi-25/">code with harry</a>
</body>
</html>