html - change height of right border -


this question has answer here:

my right border 100% height:

border-right:1px solid #000000; 

enter image description here

i'd make shorter:

enter image description here

is achievable using css without changing height of div? need div 100% height , change border.

you can use pseudo element replace right border. can choose size/position of can simulate border :

fiddle

html :

<div></div> 

css :

div {     height:200px;     width:500px;     background:gold;     position:relative;     border-top:10px solid grey;     border-bottom:2px solid #000; } div:after {     content:"";     position:absolute;     top:20%;     right:0;     width:2px;     height:60%;     background:#000; } 

supports ie8 see caniuse


Comments

Popular posts from this blog

java - Intellij Synchronizing output directories .. -

git - Initial Commit: "fatal: could not create leading directories of ..." -