I utilized Creative Tim's Material Dashboard Pro to create a select
field.
My goal is to align both the select field and its options to the right. Currently, I have only been successful in aligning the options while the title and selected option remain unaligned:
https://i.stack.imgur.com/lJL52.png
The image above demonstrates that only the options are aligned to the right, leaving the field's title unaffected.
https://i.stack.imgur.com/WlUex.png
Even after making a selection, the title continues to be aligned to the left rather than the right.
Below is the code responsible for generating this select
field:
<select class="selectpicker" data-style="select-with-transition" title="Select One" dir="rtl">
<option value="a">A</option>
<option value="b">B</option>
<option value="c">C</option>
</select>
Is there a way to properly align the title of the select
field to the right?