CSSBattle

Daily Targets (260416)

코드
<p><p r><p><p r><p><p r>
<style>
  body {
    display: grid;
    /* 2행 3열 배치 */
    grid-template-columns: 100px 100px 100px;
    grid-template-rows: 100px 100px;
    gap: 10px;
    place-items: center;
    margin: 45 40 33;
    background: #E8AD6D
  }

  p {
    width: 100;
    height: 100;
    border-radius: 20px;
    background: #FFF
  }

  [r] {
    background: #A84A4B
  }
</style>