CSS tricks

Span

  • Margin and padding will not work with <span> because it is an inline element. To change this, change the display type to inline-block or block using CSS.

Text shadow

/*
Subtle text shadow for better readability on white or black backgrounds
*/
.subtle-text-shadow {
    text-shadow: 1px 1px 2px black;
    color: white;
}

Examples

  • White background
  • Black background