IFCD0210/Practicas/Practicas CSS/Practica 14/css/estilo.css
2023-12-12 13:45:17 +01:00

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;
}