The situation is that one of the stylesheet that comes with the theme has this ol { list-style: decimal; }
. However, for this specific page, I want it to use the style defined by the type
property of ol
element.
Eg
<ol type='a'>
<li>first</li>
<li>Second</li>
</ol>
or
<ol type='i'>
<li>first</li>
<li>Second</li>
</ol>
I tried ol { list-style: initial}
and ol { list-style: inherit}
, but no luck.
Can someone give me a way to reset the applied style this using CSS?
, aren't you confusing
with
?
– Carlos Valencia Nov 29 '17 at 15:19...
` – Carl Edwards Nov 29 '17 at 15:21