CSSBattle

Daily Targets (260626)

코드
<p s><p><p><p s l>
<style>
  body {
    display: grid;
    grid-template-columns: 110px 110px;
    grid-template-rows: 110px 110px;
    margin: 24 90;
    background: #D8F581
  }

  p {
    /* 큰 사각형 */
    width: 110;
    height: 110;
    background: #222
  }

  [s] {
    /* 작은 사각형 */
    width: 55;
    height: 55
  }

  [l] {
    margin: 71 55
  }
</style>