CSSBattle

Daily Targets (260313)

코드
<p><p><p><p><p>
<style>
  &>*{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* 그래디언트로 중앙 선 표현 */
    background: linear-gradient(#FADE8B) 50% / 300q 10px no-repeat #6D1B24
  }
  
  p {
    /* 원 표현 */
    width: 50;
    height: 50;
    border-radius: 50%;
    background: #FADE8B
  }
</style>