CSS Humor

Education Background Transparent Content Book Education Strict Background White Display Inline Education Lax Background Pink Border None Display Flex

.education {
  background: transparent;
  border: inherit;
  content: "book";
  display: table;
}

.education.strict {
  background: white;
  border: grey 5px solid;
  display: inline;
}

.education.lax {
  background: pink;
  border: none;
  display: flex;
  filter: blur(30%);
}

From @BastienHo