Hi @peter liles,
You can use the newline character <br/> to achieve line breaks, and then you can convert the <span> into a block-level element and then adjust it.
<div class="Box">
<span class="First">InvoiceNumber:</span>
<asp:Label CssClass="selected" ID="InvoiceNumberLabel" runat="server" Text='<%# Eval("InvoiceNumber") %>' />
<br />
<span class="First">UserID:</span>
<asp:Label CssClass="selected" ID="UserIDLabel" runat="server" Text='<%# Eval("UserID") %>' />
<br />
</div>
<style>
.First {
width: 100px;
display: inline-block;
padding: 5px;
}
</style>
Result:
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.