Jubal
Jubal

Reputation: 73

How to create centered ordered list with HTML/CSS?

I'd like to create a simple centered ordered list like the following:

    1. one
   2. three
  3. fifteen
    4. two

Everything I'm trying makes the number align flush to the left, rather than stay to the right next to the item. How do I get the result above?

Upvotes: 7

Views: 15975

Answers (1)

CBRRacer
CBRRacer

Reputation: 4659

use

.centered { text-align: center; list-style-position:inside; }
<ol class="centered">
  <li>one</li>
  <li>three</li>
  <li>fifteen</li>
  <li>two</li>
</ol>

Upvotes: 16

Related Questions