Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

circle as a pseudo element

.item::before{
       content: '';
       display: inline-block;
       width: 15px;
       height: 15px;
       -moz-border-radius: 7.5px;
       -webkit-border-radius: 7.5px;
       border-radius: 7.5px;
       background-color: #69b6d5;
    }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #circle #pseudo #element
ADD COMMENT
Topic
Name
1+1 =