Skip to main content

DxTagBox<TData, TValue>.DropDownBodyCssClass Property

Specifies the name of the CSS class applied to the drop-down body in the TagBox.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public string DropDownBodyCssClass { get; set; }

Property Value

Type Description
String

The CSS class name.

Remarks

To define the appearance of the drop-down body of the TagBox, assign a CSS class name to the DropDownBodyCssClass property.

<style>
    .my-style {
        border: 2px dashed blueviolet;
    }
</style>

<DxTagBox Data="@Data"
          DropDownBodyCssClass="my-style"
          TextFieldName="@nameof(Employee.Text)"
          @bind-Values="@Values"/>

CSS Class for DropDown Body in TagBox

For more information, see the following help topic: CSS Classes.

See Also