We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We currently have this
@text { align: (left) | right | center | justify | <number>; //for horizontal alignment }
I am proposing of adding vertical alignment too:
@text { align: (left) | right | center | justify | <number> , (baseline) | sup | sub | top | bottom | middle | <number>; }
But there's a caveat: setting only the horizontal one will require a value for the vertical one:
@text { align: left, sup; }
In these cases we can use alignX/Y:
@text { alignY: sup; }
The text was updated successfully, but these errors were encountered:
Closing this as a duplicate of #57.
Sorry, something went wrong.
No branches or pull requests
We currently have this
I am proposing of adding vertical alignment too:
But there's a caveat: setting only the horizontal one will require a value for the vertical one:
In these cases we can use alignX/Y:
The text was updated successfully, but these errors were encountered: