I'd like to know if it's possible to use letters with ")" intead "." in an ordered list. Something like this:
a) Some text...
b) Some text...
c) Some text...
Until now I'm getting:
a.) Some text...
b.) Some text...
c.) Some text...
So I need to eliminate the points.
CSS:
.theclass ol li{
margin: 0 0 0 1em;
}
.theclass ol li:before{
content: ') ';
position: absolute;
margin-left: -3.4em;
text-align: right;
width: 3em;
}
HTML:
<div class="theclass">
<ol type="a">
<li>Some text...</li>
<li>Some text...</li>
<liSome text... </li>
</ol>
</div>