CSS - bullet styling li

0 votes
239 views
added Jan 14, 2019 in CSS by LC Marshal Captain (25,790 points)
li::before {
  content: "•"; 
  color: green
}

 

1 Response

0 votes
responded Jan 29 by lcjr First Warrant Officer (11,850 points)
/*no bullet*/
.historylist ul {
  list-style-type: none;
  padding: 0;
}

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...