css - Change color of geomicons -


i'm using geomicons , need change colors.

for example, <span class='geomicon-info-alt'/>, black circle black letter i in on white background.

original image

i want change white letter i on black circle background this:

expected

however, if color: white; background-color: black, i'll square black background below.

enter image description here

can 1 give me suggestion on how fix it? thanks,

updated tried border-radius: 50% suggested in comment below. it's better there's still little black in left edge.

enter image description here

applying css can output.

.geomicon-info-alt {      color:#ffffff;     background:black;     border-radius:50%;     border:0; } 

note : if height , width same use border-radius:50% otherwise manually change border-radius value desired output..


Comments

Popular posts from this blog

java - UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0) -

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

ubuntu - collect2: fatal error: ld terminated with signal 9 [Killed] -