from a foreach I send several items of the model to my view, and they show me without problem, but I am looking for them to be placed with considerable spaces.
My code:
<tr>
@if (Model != null)
{
foreach (var item in Model)
{
<td> <label> <strong> @item.Name </strong> </label> </td>
}
}
</tr>
as the view looks
Load Availability Assign Chair Student Finished
I want to have more space between "Load availabilities" "Assign student chair" "Finished"