You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width"/>
|
|
<style>
|
|
div {
|
|
border: 3px solid #73ad21;
|
|
max-width: 300px;
|
|
margin: auto;
|
|
height: 100px;
|
|
background-color: white;
|
|
}
|
|
.box1 {
|
|
position: static;
|
|
}
|
|
.box2 {
|
|
position: relative;
|
|
left: 30px;
|
|
top: -30px;
|
|
}
|
|
.box3 {
|
|
position: relative;
|
|
left: 60px;
|
|
top: -60px;
|
|
}
|
|
.box4 {
|
|
position: absolute;
|
|
left: 75px;
|
|
top: 75px;
|
|
}
|
|
.box5 {
|
|
position: fixed;
|
|
bottom: 10px;
|
|
right: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<he>Box position</he>
|
|
<hr>
|
|
<div class="box1">Box-1: static</div>
|
|
<div class="box2">Box-2: relative</div>
|
|
<div class="box3">Box-3: relative</div>
|
|
<hr>
|
|
<div class="box4">Box-4: absolute</div>
|
|
<div class="box5">Box-5: fixed</div>
|
|
</body>
|
|
</html> |