CSS Humor

Coffee Color Black Coffee Before Content Zz Position Relative Coffee After Content BOOM Position Absolute

.coffee {
  color: black;
}
.coffee::before {
  content: "Zz";
  position: relative;
}
.coffee::after {
  content: "BOOM!";
  position: absolute;
}

From @_CodeGears_

MGS Solid Snake Transform Box View Box Visibility Hidden

#MGS .solid_snake {
  transform-box: view-box;
  visibility: hidden;
}

From @_CodeGears_

Party Bottles After Content Empty Party Floor After Content Diced Carrots

.party .bottles:after {
  content: " ";
}
.party .floor:after {
  content: "diced carrots";
}

From @ramriot

Drunk Position Absolute Bottom 0 Overflow Hidden

.drunk {
  position: absolute;
  bottom: 0;
  overflow: hidden;
}

From @jelicanin

B-21 Display None

.b-21 { display: none; }

From @_SuperBolt_

Avatar Navi Color Blue

.avatar.navi { color: blue; }

From @ToshCamille

Burj Khalifa Height 82800cm

#burj-khalifa { height: 82800cm; }

From @yuxel

Tetris Line Block Line Height 4

.tetris .line-block { line-height: 4; }

From @IAmAdamTaylor

Flex Zone Display None

.flex-zone { display: none; }

From @boymanjor

Top Chef Display Table Top Chef Menu After Font Weight Bold

#topchef { display: table; }
#topchef menu:after { font-weight: bold; }

From @GillesCC