Checkerboard

체커보드

Two colours alternating in a square grid — the simplest possible two-colour tessellation.

Also known as: 바둑판무늬체크무늬
···
html
<div class="cb"></div><span class="tag">checkerboard</span>
css
.cb{position:absolute;inset:0;background-color:#fff;
  background-image:conic-gradient(#111 90deg,transparent 90deg 180deg,#111 180deg 270deg,transparent 270deg);
  background-size:32px 32px;
  animation:pan 8s linear infinite}
@keyframes pan{to{background-position:32px 32px}}
.tag{position:absolute;left:10px;bottom:8px;padding:3px 9px;border-radius:999px;background:rgba(0,0,0,.78);
  color:#fff;font:600 10px/1.5 ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.03em}

The pattern has covered board games for millennia — chess, checkers — and shows up in medieval church flooring (Cosmatesque work) and the heraldic charge "checky." It resurfaced in the late 20th century as the visual identity of skate culture (Vans) and the Jamaican-rooted ska/2 Tone music scene.

The structure is just alternating a square's colour, but that simplicity gets reused elsewhere — the grey-and-white checkerboard image editors use to represent an alpha channel (transparency) is the same pattern doing different work: since "no colour here" can't be drawn as a colour, the checker itself became the agreed-upon symbol for "nothing's there."

In CSS, two 45° linear-gradient layers cut at the 25%/75% marks, offset by exactly half a tile from each other, are all it takes. It helps to see houndstooth as this pattern with two more diagonal layers stacked on top.

When to use

Use for racing/skate moods, transparency-indicator UI, and flooring mockups. Smaller tiles read as flat grey from a distance.