djr: Text und Bilder anordnen

Beitrag lesen

@media (min-width: 40em) {
  section {
    position: relative;
  }
  
  section>* {
    width: 60%;
  }

  section>img {
    position: absolute;
    top: 0;
    left: 60%;
    
    width: 30%;
    max-width: 350px;
    border: 1px solid;
  }
  
  section>img:nth-of-type(2) {
    top: 50px;
    left: calc(60% + 30px);
  }
}

https://codepen.io/anon/pen/jeLvxN