surveyjs / custom-widgets

The collection of custom widgets for SurveyJS: Survey Library and Survey Creator :package:
https://surveyjs.io
MIT License
79 stars 78 forks source link

decimal inputmask align to left #306

Closed paragkulkarni closed 2 years ago

paragkulkarni commented 2 years ago

How to make inputmask with decimal align to left.

Help will be appreciated

JaneSjs commented 2 years ago

Hello, For the record: SurveyJS uses the https://unpkg.com/inputmask@5.0.3/dist/inputmask.js jQuery plugin to implement input mask functionality.

You can use your browser tools to explore which CSS styles are used by a given component. For example, you can apply the following CSS to change the text-alignment of the decimal input using the input Id.

#sq_100i{
  text-align: left !important;
}