CSSBattle

Daily Targets (260612)

코드
<p><p c>
<style>
  * {
    margin: 0
  }

  body {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 30;
    background: #317080;
    height: calc(50% - 30px);
    /* 하단으로 복사 */
    -webkit-box-reflect: below
  }

  p {
    /* 직사각형 */
    width: 80;
    height: 130;
    background: #F5BB60
  }

  [c] {
    /* 나뭇잎 모양 */
    width: 100;
    height: 100;
    border-radius: 999q 0
  }
</style>