flowstacker
flowstacker

Reputation: 115

How to position checkbox to the right of the text?

How do I achieve this? There is no API for it.

<label formControlName="item" nz-checkbox>Item</label>

Upvotes: 0

Views: 2167

Answers (1)

sharang
sharang

Reputation: 456

You could set flex-direction: row-reverse on the nz-checkbox or add class="ant-checkbox-rtl" on it (not recommended).

Upvotes: 2

Related Questions