List Buttons Centered +Text-Align Left?

How can I center my “List Buttons” - but have all the text left aligned so they are all lined up?

For example :

       List item
       List item 2
       List item 3

You can try to wrap button’s inner text with additional element with text-align: left and fixed width, and make sure this element has display: inline-block

That worked - thank you.