html {
  font-family: "Open Sans", sans-serif;
}
.main {
  width: 300px;
  height: 200px;
  margin: 0 auto;
  background:lightgray;
  display: flex;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content: flex-end;

}
.main div {
  width: 50px;
  height: 50px;
}

div div:nth-of-type(1) {
  background:lightcyan;
  margin-right:auto;
  margin-top:auto;
}
div div:nth-of-type(2) {
  background:lightcoral;
  align-self:stretch;
}
div div:nth-of-type(3) {
  background:lightsalmon;
}
div div:nth-of-type(4) {
  background:lightgreen;
}
div div:nth-of-type(5) {
  background:lightseagreen;
}
div div:nth-of-type(6) {
  background:lightskyblue;
}
div div:nth-of-type(7) {
  background:lightslategray;
}
div div:nth-of-type(8) {
  background:lightpink;
}
div div:nth-of-type(9) {
  background:lightsteelblue;
}
div div:nth-of-type(10) {
  background:peru;
}