Skip to content

Instantly share code, notes, and snippets.

@mrkkr
Last active February 15, 2018 15:35
Show Gist options
  • Save mrkkr/c5c951fa274dccef5c96b85a6d6afdca to your computer and use it in GitHub Desktop.
Save mrkkr/c5c951fa274dccef5c96b85a6d6afdca to your computer and use it in GitHub Desktop.
Linia horyzontalna #css
.horizontal-line {
position: relative;
}
.horizontal-line::before {
position: absolute;
top: 50%;
right: 100%;
overflow: hidden;
width: 150%;
height: 1px;
content: '\a0';
background-color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment