RadzenDropDown items alignment

Greetings,
As 'display' property of dropdown css classes is set to 'block', setting align-items doesn't apply.
How to align dropdown items right to left of left to right?

Hi @dsec993,

Honestly I can't make much from this. Can you clarify what you are trying to achieve? Maybe post a screenshot?

Items are left aligned. I need to change alignment direction

This CSS should work:

    .rz-dropdown-item {
        text-align: right;
    }

1 Like