I really don't understand the question, but what you want is like this?
Please be more clarifier.
.custom-list {
counter-reset: list;
}
.custom-list > li {
list-style: none;
}
.custom-list > li:before {
content: counter(list) ") ";
counter-increment: list;
}