Syntax Bytes with CJ - CSS Battles | Working on Tauri App and Syntax.fm

Поделиться
HTML-код
  • Опубликовано: 17 ноя 2024

Комментарии • 1

  • @matiasfacio1988
    @matiasfacio1988 Месяц назад

    For the first CSS Battle, the one with the squares, a possible idea to style could be:
    Then, on each grid child, set the background to var(--c). Maybe something like this:
    body {
    background: #DEFAULT_COLOR
    display:grid;
    // other properties here
    * {
    background: var(--c);
    }
    }