What would be the Unicode character for big bullet in the middle of the character?

前端 未结 5 813
南笙
南笙 2020-12-07 13:59

I want something like

0x2022  8226    BULLET  •

But bigger.

I can\'t even seem to find them at http://www.ssec.wisc.edu/~tomw/java/

5条回答
  •  太阳男子
    2020-12-07 14:05

    You can use a span with 50% border radius.

     .mydot{
         background: rgb(66, 183, 42);
         border-radius: 50%;
         display: inline-block;
         height: 20px;
         margin-left: 4px;
         margin-right: 4px;
         width: 20px;
    }    

提交回复
热议问题