You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
416 B
CSS
29 lines
416 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
.img-float {
|
|
width: 300px;
|
|
height: 300px;
|
|
float: inherit;
|
|
margin: 2rem;
|
|
}
|
|
.parent-element {
|
|
background-color: skyblue;
|
|
padding: 10px;
|
|
}
|
|
.child-one {
|
|
background-color: gray;
|
|
padding: 10px;
|
|
}
|
|
.child-two {
|
|
background-color: yellow;
|
|
padding: 10px;
|
|
}
|
|
.child-three {
|
|
background-color: gray;
|
|
padding: 10px;
|
|
}
|
|
|