1
Well, I’m developing a website, and the following problem has arisen:
I reset all elements of the site;
*{
    color:inherit;
    font-family:inherit;
    font-size:inherit;
    font-weight:inherit;
    background-color:inherit;
    margin:0;
    padding:0;
    text-decoration:none;
    border:none;
    outline:none;
    box-sizing:border-box;
    list-style:none;
}
However, now I need to use a list with the balls of the list, so I used the css below:
.video-description ul,.video-description ol{
    list-style:initial;
    list-style-type:disc;
    list-style-position:outside;
    list-style-image:initial;
    padding:0 0 0 24px;
    margin:12px 0 24px;
}
However, the balls do not appear again, how can I fix the problem ? (I tested with a normal ul)
Try to give a ! Import
– Victor Eyer
didn’t spin man :/
– Murilo Melo