Site logo

Archived topic

I want Simiar kind of Number style in my website

1 reply · Started by Kartik on November 19, 2022

Viewing posts 1–2 of 2

Hi there,

try this CSS:


ol {
    list-style: none !important;
    counter-reset: item;
    margin-left: 0 !important;
    padding-left: 2.4em !important;
    position: relative;
}
ol li {
    counter-increment: item;
    padding-bottom: 0.35em;
}
ol li::before {
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2em;
    height: 1.2em;
    padding: 0.8em;
    margin-right: 10px;
    content: counter(item);
    background: #482d70;
    border-radius: 100%;
    color: white;
}
This archived topic is closed to new replies.