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

59 lines
690 B
CSS

@charset "UTF-8";
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
border: none;
outline: none;
}
.item {
position: absolute;
font-weight: bold;
color: white;
}
#div1 {
background-color: orange;
width: 200px;
height: 100px;
}
#div2 {
background-color: blue;
top: 50px;
left: 590px;
width: 50px;
height: 300px;
}
#div3 {
background-color: red;
top: 0px;
left: 300px;
width: 150px;
height: 150px;
}
#div4 {
background-color: black;
top: 0px;
left: 550px;
width: 230px;
height: 40px;
}
#div5 {
background-color: green;
top: 160px;
left: 300px;
width: 110px;
height: 140px;
}
#div6 {
display: none;
}