CSS Humor

Arabic Letters Direction RTL

.arabic-letters { direction: rtl; }

From Timur

Clean Bathroom Greater Than P Display None

.clean-bathroom {
  > p {
    display: none;
  }
}

From Jeffery Jones

Blackhole Background Color Black Display Flex Justify Content Center Align Items Center Width Height Padding

.blackhole {
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: ?;
  height: ?;
  padding: 0;
}

From Ricardo Abad

Sasha Grey After Resize Both

.sasha-grey::after { resize: both; }

From darxide

USA Border Bottom 4vh Solid Gray

.usa { border-bottom: 4vh solid gray; }

From Mattis Dettmann

Mexico Border Top 10px Solid Grey United States Border Bottom 10px Solid Grey

.mexico {
  border-top: 10px solid grey;
}

.unitedstates {
  border-bottom: 10px solid grey;
}

From Kenny

Glasses Lost Filter Blur 1000 Pixels

.glasses.lost { filter: blur(1000px); }

From Andrew Ashley

The Illusionist Before The Illusionist After

#theillusionist:before {
  color: #008000;
  content: "🌱";
}

#theillusionist:after {
  color: #FFA500;
  content: "🌳";
  zoom: 1600%;
}

From DavidC

USA California Background Image URL Flag Canada

#usa .california {
  background-image: url("flag-canada.png");
}

From @ramriot

Trump Federal Taxes Display None

#trump .federal-taxes { display: none; }

From @Kedxr