congdantoancau

Multicolor vertical line

Feb 23rd, 2019
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.39 KB | None | 0 0
  1. /**
  2. * MULTICOLOR VERTICAL LINE
  3. * Source: https://stackoverflow.com/questions/38850419/how-to-create-multi-color-border-in-css3
  4. */
  5.  
  6. .content:before {
  7.     background: repeating-linear-gradient(to bottom, #bcbcbc, #bcbcbc 10%,#ffcd02 10%, #ffcd02 20%, #e84f47 20%, #e84f47 30%, #65c1ac 30%, #65c1ac 40%);
  8.   position: absolute;
  9.   content: '';
  10.   width: 4px;
  11.   left: 0;
  12.   top: 0;
  13.     bottom: 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment