32 lines
350 B
CSS
32 lines
350 B
CSS
@charset "UTF-8";
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-decoration: none;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.item {
|
|
width:100px;
|
|
height:100px;
|
|
background-color: orange;
|
|
color:white;
|
|
}
|
|
|
|
#div2{
|
|
position: relative;
|
|
top:40px;
|
|
left: 150px;
|
|
}
|
|
|
|
#div4{
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 10px;
|
|
}
|
|
|
|
#div5{
|
|
position: sticky;
|
|
} |