Well, I'm developing a website, and the following problem came up:
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 in 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 correct the problem? (I tested with a normal ul)