Hello,
For the left limit of the MAUI text start, you could set the background color for the Label to see it.
For the code you provide, the first line will be topped and the second line will be offset a lot after compilation. This is because when using <Text>
tags, VS treats the entire piece of text from the first character to the last character as a string.
In other words, the second line actually contains many spaces in front of it.
If you remove the spaces before the second line, you will find that both lines start at the same location.
<Label>
<Label.Text>
first line
second line
</Label.Text>
</Label>
```
Best Regards,
Alec Liu.
*************************************************************************
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][1] to enable e-mail notifications if you want to receive the related email notification for this thread.**
[1]: https://docs.microsoft.com/en-us/answers/articles/67444/email-notifications.html