Skip to content

Instantly share code, notes, and snippets.

@matthijs166
Created January 24, 2019 09:24
Show Gist options
  • Save matthijs166/062da93534eb95ecf6492f0491cf0067 to your computer and use it in GitHub Desktop.
Save matthijs166/062da93534eb95ecf6492f0491cf0067 to your computer and use it in GitHub Desktop.
Css dashed line more control
/*Horizontal*/
background-image: linear-gradient(to right, black 33%, rgba(255,255,255,0) 0%);
background-position: bottom;
background-size: 3px 1px;
background-repeat: repeat-x;
/*Vertical*/
background-image: linear-gradient(black 33%, rgba(255,255,255,0) 0%);
background-position: right;
background-size: 1px 3px;
background-repeat: repeat-y;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment