CSS Humor

Hobbit Height 50 Percent Hobbit Foot Width 200 Percent

.hobbit { height: 50%; }
.hobbit #foot { width: 200%; }

From Digital Synopsis

Rap Artists Word Spacing Zero

.rap-artists { word-spacing: 0; }

From Digital Synopsis

IKEA Display Table

#ikea { display: table; }

From Digital Synopsis

Monarch Position Inherit

.monarch { position: inherit; }

From Digital Synopsis

Trump Background Color White Position Inherit Top 1 Percent Right 100 Percent Border Top Style None

#Trump {
  background-color: white;
  position: inherit;
  top: 1%;
  right: 100%;
  border-top-style: none;
}

From Bren

EU Border None Refugees Overflow Visible

#EU { border: none; }
.refugees { overflow: visible; }

From Koen

Rich People Top 1 Percent Working Class Bottom 99 Percent

.rich-people { top: 1%; }
.working-class { bottom: 99%; }

From Digital Synopsis

Sense of Humor Display None

.sense-of-humor { display: none; }

From @mikeleeorg

Mario Mushroom Transform Scale 200 Percent

#mario.mushroom {
  transform: scale(200%);
}

From @DaywalkerHN

Darth Vader First Child Transform Rotate Y 180 Degrees

#darth-vader:first-child {
  transform: rotateY(180deg);
}

From @DaywalkerHN