I have 2 divs, first div must adapt height about content and second div must be height the remnant.
The second div must scroll to show all items
This is the template 
here my example JSFiddle link I don't want javascript, only CSS
<div class="tbl">
<div class="header">
<p>1</p>
<p>2</p>
</div>
<div class="body">
<div class="in-body">
<p>3</p>
<p>4</p>
<p>5</p>
<p>6</p>
<p>7</p>
<p>8</p>
<p>9</p>
<p>10</p>
</div>
</div>
</div>