How to create border only on part of the side edge, or how to simulate it?

yotube
0

Issue

I think that two images will clarify everything

Now I have (jsfiddle):

enter image description here

And I am wondering is it possible to do that:enter image description here


Solution

You could use :after to hide it, crude I know, but works in the latest browsers:

#column1:after{
display:block;
content:'';
background-color:#f6f6f6;
height:100%;
width:5px;
position:absolute;
top:0;
right:-5px;
}

JSFiddle



Answered By - George
Tags

Post a Comment

0Comments
Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Learn More
Accept !
To Top