CSSBattle

Daily Targets (260511)

코드
<p>
<style>
  &>* {
    /* 검정색 테두리 원 */
    margin: 60 170 60 50;
    border: 20px solid;
    border-radius: 50%
  }

  p {
    /* 반원 */
    position: relative;
    width: 180;
    height: 90;
    z-index: -1;
    margin: 35 0 0 100;
    background: #B53733;
    border-radius: 0 0 99q 99q
  }
</style>