Skip to content

Instantly share code, notes, and snippets.

@osalcedo
Last active August 29, 2015 14:19
Show Gist options
  • Save osalcedo/9809ef42598c76dd27ad to your computer and use it in GitHub Desktop.
Save osalcedo/9809ef42598c76dd27ad to your computer and use it in GitHub Desktop.
CSS snippet for border-image property
p {
border-style: solid;
border-width: 0px 0px 0px 15px;
-moz-border-image: url(http://border-image.png) 0 0 0 15 repeat;
-webkit-border-image: url(http://border-image.png) 0 0 0 15 repeat;
-o-border-image: url(http://border-image.png) 0 0 0 15 repeat;
border-image: url(http://border-image.png) 0 0 0 15 repeat;
}
@osalcedo
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment