Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

use CSS to add a bullet point

.any-element::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
  background-color: black;
}
 
PREVIOUS NEXT
Tagged: #CSS #add #bullet #point
ADD COMMENT
Topic
Name
6+5 =