why is after not on css code example
Example 1: css after not working
/*Add the property: content: ""; */
.myclass:{
content: "";
...
}
Example 2: css before is not working
.chart ul:after{
content: "";
border:1px solid #f30;
}
/*Add the property: content: ""; */
.myclass:{
content: "";
...
}
.chart ul:after{
content: "";
border:1px solid #f30;
}