Skip to content

Instantly share code, notes, and snippets.

@travismillerweb
Created May 24, 2014 16:42
Show Gist options
  • Save travismillerweb/a6effa67d21b3e09b614 to your computer and use it in GitHub Desktop.
Save travismillerweb/a6effa67d21b3e09b614 to your computer and use it in GitHub Desktop.
CSS - Transform HR at angle
/*
CSS - Transform HR at angle
Found this while trying to figure out how to style a HR. Prettey Decent.
Reference Link http://webdesign.about.com/od/beginningcss/a/style_hr_tag.htm
*/
hr {
-moz-transform: rotate(10deg);
-webkit-transform: rotate(10deg);
-o-transform: rotate(10deg);
-ms-transform: rotate(10deg);
transform: rotate(10deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment