I have a the following html code:
<div class="panel">Some Text Here</div>
With the following css attached
.panel{
display:inline-block;
height:100%;
border:1px solid black;
}
Because the panel has a border it's causing the vertical scrollbar to appear, is there a way to make the CSS to recognize 100% to include the paddings, margins and border?