How to make 3 vertical dots using CSS?

前端 未结 8 2012
面向向阳花
面向向阳花 2020-12-23 14:18

I want to have 3 dots on my page to, for example, toggle the display of a contextual menu. How can I achieve this using CSS?

8条回答
  •  醉梦人生
    2020-12-23 14:43

    1. With fontawesome.css

      
      
    2. With Glyphicons

      
      
    3. With css

      .textSpan:after {
       content: '\2807';
       font-size: 3em;
       color: #2e2e2e
      }
      

提交回复
热议问题