CSSBattle

Daily Targets (260721)

코드
<p><p y><p y s><p><p f y><p f b y>
<style>
  body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 60 50;
    background: #4A9A86
  }

  p {
    /* 상하단 흰색 테두리 */
    width: 140;
    height: 20;
    margin: 0;
    border: solid #EBF6F0;
    border-width: 30 0
  }

  [y] {
    /* 노란색 사각형 */
    width: 80;
    height: 80;
    background: #FAE29E;
    border: 0
  }

  [s] {
    margin-left: 60
  }

  [f] {
    /* 흰색 테두리 가림막 */
    position: fixed;
    top: 100;
    left: 10;
    background: #4A9A86
  }

  [b] {
    top: 130;
    left: 310
  }
</style>