How can I make a block quote line the exact same height as the text that's inside the element.
Here is an example of what It should look like:
This is the current result that I'm getting from the code that I have created:
blockquote {
margin: 20px 0 30px;
padding-left: 20px;
border-left: 5px solid #1371b8;
}
<blockquote>Test</blockquote>
From the result, we can see that the line Is vertically bigger than the text.
NOTE: inline-flex doesn't support older browsers: http://caniuse.com/#feat=flexbox
But it does work...
– This answer is based on the original code snippet (found below) by عارف بن الأزرق