'CKEditor inline toolbar position

Simple question : how can I make the inline CKEditor toolbar float top right (or bottom right) of my editable element instead of the default top left position ?

Have been googling it but no luck so far :(

Thank you



Solution 1:[1]

we can do it with floatSpacePreferRight config

only we need to set

config.floatSpacePreferRight = true;

default value of floatSpacePreferRight is false;

so with this configuration, we can align inline toolbar position to right

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 AkshayBandivadekar