I want to set a left border for a paragraph, but the border has extra height due to the height of the line. I want to remove a border height that exceeds the top and bottom of the text. See screenshot:

I tried a few mothds, like wrapping a paragraph in a div and setting a negative margin, but it doesn't seem to work.
Here is a simple css:
p{
margin: 20px;
line-height: 2;
border-left: 5px solid green;
}
Demo:
http://jsfiddle.net/0et4gq16/
Edit: line height should not be changed.
source
share