CSS Humor

Bruce Banner Color Pink Transition Color 10 Seconds The Hulk Color Green

#bruce-banner {
  color: pink;
  transition: color 10s;
}

#bruce-banner.the-hulk {
  color: green;
}

From @DaywalkerHN

Meteo Switzerland Position Absolute Right 100%

.meteo_switzerland {
  position: absolute;
  right: 100%;
}

From @LSpallino

Universe Border None

.universe { border: none; }

From @hankgreen

Monday Morning Active Visibility Visible Important

Monday.morning:active {
  visibility: visible !important;
}

From @ApoorvaShrini

Christmas Active Animation Name Festive Cheer

#Christmas:active {
  animation-name: festive-cheer;
}

From @go6_media

Husband Position Relative Right Zero Style None Padding Inherit Important

.husband {
  position: relative;
  right: 0℅;
  style: none;
  padding: inherit; important!
}

From @ramriot

Russian Plan Overflow Visible

.russian.plane {
  overflow: visible;
}

From @mburakerman

Hillary Clinton Left Negative Thousand Color White Background Shady Visibility Hidden

.HillaryClinton {
  left: -1000px;
  color: white;
  background: shady;
  visibility: hidden;
}

From @ChrisJPatty

Profile Pic Paris Attacks After Background Image Linear Gradient To Right Blue White Red

.profilePic #parisAttacks:after {
  background-image: linear-gradient ( to right, #00F 33%, #FFF 33%, #FFF 66%, #F00 66% );
}

From Timothée Goguely

Production Mode Bugs Font Size Zero Color Transparent

.production-mode #bugs {
  font-size: 0px;
  color: transparent;
}

From Victor