CSSBattle

Daily Targets (260207)

코드
<p><p c><p><i>
<style>
  &>*{
    display: flex;
    gap: 20px;
    background:#8877DC;
    margin: 17 25;
  }
  p {
    width: 30;
    height: 200;
    background: #192865;
  }
  [c] {
    width: 250;
    height: 60;
  }
  i {
    position: fixed;
    top: 110;
    left: 75;
    /* 중앙 반원 */
    width: 60;
    height: 30;
    border-radius: 0 0 50px 50px;
    background: #FFE08A;
    color: #FFE08A;
    /* 그림자를 통해 나머지 반원 복사 */
    box-shadow: 95px 0 0, 190px 0 0;
  }
</style>