CSSBattle

Daily Targets (260526)

코드
<p><hr>
<style>
  &>* {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #A84A4B
  }

  p {
    /* A 형태 표현 */
    width: 40;
    height: 120;
    border: 40px solid #F5E3B5;
    border-bottom: 0;
    border-radius: 100px 100px 0 0;
    background: linear-gradient(#30383F) 0 / 1q 40px repeat-x
  }

  hr {
    /* i 형태 표현 */
    width: 40;
    height: 20;
    border: 0;
    border-top: 40px solid #30383F;
    border-bottom: 100px solid #F5E3B5;
    margin: 0 0 0 40
  }
</style>