Facebook
From Chartreuse Horse, 8 Years ago, written in CSS.
This paste is a reply to 70-percent heigth vertical stripe from Me - view diff
Embed
Download Paste or View Raw
Hits: 500
  1. .navbar-nav li a::before {
  2.     content: ' ';
  3.     display: block;
  4.     width: 1px;
  5.     height: 70%;
  6.     background: #fff;
  7.     position: absolute;
  8.     bottom: 15%; /* it makes me center */
  9.     left: 0;
  10. }
  11.  
  12. /* uncomment if you want to hide first stripe
  13. .navbar-nav li:first-child a::before {
  14.     display: none;
  15. }
  16. */