By default, the ordered list looks like this:

There are some spacing on the left hand side of the list. Is there any way to remove those spacing?
Here is what I want:

On my website, the font-family and font-size will be changed by users dynamically. Therefore I am not able to preset padding-left.
You should be able to use em for a scalable size (rather than fixed px sizing). This would allow scaling of the font size but match the scaled size when applying padding.
Here is a jsfiddle to illustrate. Change the
bodyfont-size to different scaled sizes (try 1em, 2em, etc.) and you’ll see the paragraph matches theolon the left.You may find that browsers render at different sizes. 1.8em, works with Chrome, but it may require 1.6em or 1.9em for Firefox or IE. The thing with the web is it is fluid and scalable, so shooting for pixel precision, especially when working with user-scalable fonts is almost always a no-win situation.