I have tried and tried to get a TelerikNumericTextBox aligned right. Honestly, for a numeric text box, this should just be a property on the component. Crazy.
Anyway, here is what I've tried and have been through all the forums, etc.
CSS
/* Right-align input in TelerikNumericTextBox for this component */
.p21-numerictextbox-right .k-numerictextbox .k-input-inner {
text-align: right !important;
}
Markup
<TelerikNumericTextBox @ref="P21NumericTextEditorRef"
Class=" p21-numerictextbox-right"
@bind-Value="_value"
Arrows="false"/>
This does not work. Any thoughts?
Thank you!