Last active
February 6, 2017 04:07
-
-
Save madrobby/6581933 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 1px hairline, using a GIF */ | |
background: repeat-x bottom left | |
url(data:image/gif;base64,R0lGODlhAQACAPABAMjHzP///yH/C1hNUCBEYXRhWE1QAz94cAAh+QQFAAABACwAAAAAAQACAAACAgwKADs=); | |
background-size: 100% 1px; | |
/* 1px hairline, using SVG (background-size property not required) */ | |
background: repeat-x bottom left | |
url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1' height='1'><rect fill='#ff0000' x='0' y='0' width='1' height='0.5'/></svg>"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment