Код: Выделить всё
* {
margin: 0;
}
div:nth-of-type(1) {
position: relative;
background-color: aquamarine;
}
div:nth-of-type(1)>div:nth-of-type(1) {
position: absolute;
top: 0;
left: 0;
width: 200px;
height: 200px;
background-color: pink;
}
div:nth-of-type(1)>div:nth-of-type(2) {
position: absolute;
top: 0;
right: 0;
width: 200px;
height: 200px;
background-color: purple;
}
h1 {
background-color: greenyellow;
}< /code>
Hello
Подробнее здесь: https://stackoverflow.com/questions/796 ... ing-layout