jquery - How can I place a line behind my divs? -


i want move place dashed line behind divs. keep staying on top of divs.

here have right :

enter image description here

here hoping :

enter image description here

**css**   /*background border*/ .border-center {   width: 100%;   position: relative; }  .slide:before {   content: '';   position: absolute;   border-bottom: 3px #3498db dashed;   z-index: 1;   top: 50%;   margin-top:-2px;   right: 10%;   left: 40%;   width: 25%;   } 

i wish can put more code, since rep low, got warning :

enter image description here

more details : jsfiddle

giving fiddle z-index of 0 accomplished this, , background:white on .tl-box

http://jsfiddle.net/1q6ur85k/2/


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -