3
I have the following column of a table:
<td style="font-size:10%">
<p class="list-group-item-text">
@Html.ActionLink((string)item.cidadenome, "Cidade", "Cidade", new { cidadecod = item.cidadecod, contratocod = item.contratocod }, new { @class = "list-group-item active", @style = "font-size: 18px" } )
<span class="badge" style="font-size: 12px; background-color:@item.statusservidor_stts">
@item.statusservidor
</span>
</p>
</td>
But the content of Span is displayed below Actionlink, as illustrated in the image below:
I would like Span to be displayed in Action Link (in the blue part) after the number. What should I do ?