CSSBattle

Daily Targets (260418)

코드
<p><p c><p b>
<style>
  &>* {
    background: #E5E5E3
  }

  p {
    /* 비행기 몸체 */
    width: 80;
    height: 200;
    margin: 25 auto 0;
    background: #E75044;
    border-radius: 50px 50px 0 0
  }

  [c] {
    /* 중앙 날개 */
    width: 260;
    height: 50;
    background: linear-gradient(#E5E5E3) 60px 0 / 30px 50px no-repeat #E75044;
    margin-top: -100
  }

  [b] {
    /* 비행기 꼬리 */
    width: 140;
    height: 50;
    border-radius: 0;
    margin-top: 50
  }
</style>