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.
48 lines
1.1 KiB
48 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
/* CSS position --> static(default) ,absolute, relative, fixed, sticky */
|
|
.container {
|
|
border: 2px;
|
|
background-color: khaki;
|
|
height: 3444px;
|
|
}
|
|
|
|
.box {
|
|
display: inline-block;
|
|
border: 2px solid red;
|
|
width: 150px;
|
|
height: 150px;
|
|
margin: 2px;
|
|
}
|
|
|
|
#box3 {
|
|
/* position: absolute; */
|
|
/* position: fixed;
|
|
right: 4px;
|
|
bottom: 2px; */
|
|
/* top: 34px;
|
|
left: 134px; */
|
|
position: sticky;
|
|
top: 3px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="box" id="box1">1</div>
|
|
<div class="box" id="box2">2</div>
|
|
<div class="box" id="box3">Chat with us</div>
|
|
<div class="box" id="box4">4</div>
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html> |