I want to add a space between the number of ordered list and text
ex:
1. Hello.
2. Test.
Space between "1." and "Hello" needs to be increased.
Note. I use the style below because I don't want to. to start with the leftmost
ol
{
word-break: break-all;
}
li
{
list-style-position: inside;
padding: 0;
}
I want exactly the same as below, im to get everything except a space between the list numbering and the text (marked in the image)

source
share