On setting the inner div to inline-block, it renders slight below that of a block. Why is that ?
<div class="outer">
<div class="inner">
<p> This is a inner div</p>
<p>Height set to 100%</p>
<p>Why it renderes slightly below when set to inline-block that of a block?</p>
</div>
Please try setting the inner div as block and see the difference!
And the same inline-block adds a scrollbar here http://jsbin.com/kabom/1/edit
Just because, a class below is added to a div!
.sapUiView {
display: inline-block;
}