CSSBattle

Daily Targets (260711)

코드
<p><i></i></p>
<p><i></i></p>
<style>
  &>* {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 10;
    background: #3157B4
  }

  p {
    /* 하단 선 */
    width: 90;
    border-bottom: 30px solid #84BE8D
  }

  i {
    /* 상단 ⎤ 모양 */
    display: block;
    width: 30;
    height: 160;
    margin-left: -10;
    border: solid #84BE8D;
    border-width: 40 50 0 0
  }
</style>