Hi John,
Greetings from Syncfusion support.
We checked the reported requirement. We suspect you provided the text-align: center for the div element. If it does, set the text-align: left for the control wrapper. Refer to the code below,
<div style="text-align:center">
<SfTextBox Value="@product" Placeholder="Prod No." FloatLabelType="@FloatLabelType.Auto"></SfTextBox>
</div>
@code{
public string product { get; set; } = "First Name";
}
<style>
.e-input-group, .e-input-group.e-control-wrapper {
text-align: left;
}
</style> |
If still issue persists, kindly revert us with the control rendering code to proceed further.
Regards,
Sevvandhi N