Мой код выглядит следующим образом:
<table class="table">
<thead>
<tr class="transaction-thr">
<th style="width: 12%;">Entry Date</th>
<th style="width: 46%;text-align: left;">Description</th>
<th style="width: 14%;">Out(Tsh)</th>
<th style="width: 12%;">In(Tsh)</th>
<th style="width: 15%;">Total(Tsh)</th>
</tr>
</thead>
<tbody>
@for (int i = 0; i < Model.Txn.Count; i++)
{
<tr class="transaction-tr">
<td class="notText" style="font-weight: 600; text-align:center; line-height:50px; ">@Model.Txn[i].EntryDate.ToString("dd/MM/yyyy")</td>
<td>
<div class="row">
<div class="col-xs-3" style="padding:0px;">
<div class="subimg-container">
<img src="@Server.MapPath(Model.Txn[i].Group.ImagePath)" alt="">
<div style="font-size: small;">@Model.Txn[i].Group.Type</div>
</div>
</div>
<div class="statementdesc col-xs-9">
<div class="row" style=" white-space: nowrap; overflow: hidden;">@Model.Txn[i].Description,</div>
<div class="row">TxnID : @Model.Txn[i].Id , Amount : @String.Format("{0:n0}", Convert.ToDouble(Model.Txn[i].Amt))</div>
<div class="row">
Service Charge : @String.Format("{0:n0}", Convert.ToDouble(Model.Txn[i].sc))
</div>
</div>
</div>
</td>
<td></td>
<td class="notText" style="text-align:center;line-height:50px; ">@String.Format("{0:n0}", Convert.ToDouble(Model.Txn[i].TotalAmount))</td>
<td class="notText" style="text-align:center; font-weight:600; line-height:50px; ">@String.Format("{0:n0}", Convert.ToDouble(Model.Txn[i].Balance))</td>
</tr>
}
</tbody>
</table>
Этот код отображает стиль, но имеет дополнительное пространство в строках каждой страницы. Я пытался использовать разрыв страницы внутри: избегать; но это тоже не помогает. Любая помощь приветствуется
Запросить помощь по этому вопросу