I have a three level ordered list in html that I would like to give a style as following:
1. Item 1
1.1 Item 2
1.1.1 Item 3
An example of the
your css code is almost fine, see http://plnkr.co/edit/wmGhz7V6CKqZ7MmHIoDF?p=preview
you have an extra after level 1, so your markup becomes
- Should be Item 1
- Should be Item 1.1
- Should be Item 1.2
- Should be Item 1.3
- Should be Item 1.3.1
- Should be Item 1.4
- Should be Item 2
and in your css I've removed the base list style for ol
with list-style: none;