<div id="ucFeeChangeFeeRequest_lstSubAccountDest" class="RadListBox RadListBox_Default" style="width:380px;">
<div class="rlbGroup rlbGroupRight">
<ul class="rlbList">
<li id="ucFeeChangeFeeRequest_lstSubAccountDest_i0" class="rlbItem"><span class="rlbText">list item1</span></li>
</ul>
lots of items here
</div><input id="ucFeeChangeFeeRequest_lstSubAccountDest_ClientState" name="ucFeeChangeFeeRequest_lstSubAccountDest_ClientState" type="hidden" />
</div>
The problem would only occur if there are many items spanning pages, as if there is a page-break-before was included.
Ah, according to
http://www.w3.org/TR/CSS2/sample.html ul has default of page break.
ul { page-break-before: avoid }
I tried changing this but it still page breaks before start of ul.
ul { page-break-before: auto }
or
ul { page-break-before: }