Set the Rounded Corner in Blazor TextBox Component
4 Oct 20211 minute to read
Render the TextBox with rounded corner
by adding the e-corner
class to the input parent element.
@using Syncfusion.Blazor.Inputs
<SfTextBox Placeholder='First Name' CssClass="e-corner"></SfTextBox>
<style>
.e-input-group.e-corner {
border-radius: 4px;
}
</style>