-
Notifications
You must be signed in to change notification settings - Fork 0
/
Absolute css.html
34 lines (33 loc) · 992 Bytes
/
Absolute css.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
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Absolute css</title>
<style>
div.relative{
position:relative;
border: 3px solid;
height: 400px;
width: 800px;
}
div.absolute{
position: absolute;
border: 3px solid;
height: 200px;
width: 400px;
top: 100px;
right: 50px;
text-align: center;
line-height: 200px;
}
</style>
</head>
<body>
<h1>position:absolute;</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsum beatae, repellendus totam repudiandae perspiciatis quis corrupti ipsam debitis alias veniam!</p>
<div class="relative">silver oak university
<div class="absolute">silver oak university</div>
</div>
</body>
</html>