Skip to content

Instantly share code, notes, and snippets.

@brh55
Created July 21, 2014 23:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brh55/55508143fa5516845ba1 to your computer and use it in GitHub Desktop.
Save brh55/55508143fa5516845ba1 to your computer and use it in GitHub Desktop.
Dotted CSS Trick to Increase Spacing | Ugly but works #CSS-Tricks
hr {
height:14px; /* specify a height for this hr */
overflow:hidden;
}
hr:after {
content:".......................................................................";
letter-spacing: 4px; /* Use letter-spacing to increase space between dots*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment