You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using padding will most likely cause an issue when you get to item number 100, but I believe that is a rare case.
Anyways, an alternative fix is to change the counter to align to the left, instead of the right.
This makes the entries unaligned after item 10, which might not be desirable. It would also be inconsistent with the exported PDF, unless the print stylesheet is updated too.
li {
list-style-position: inside;
}
ol,ul {
padding-left:0;
}
Expected:
10, 11, 12 to show properly.
Results:

The text was updated successfully, but these errors were encountered: