Infinity symbol with HTML

后端 未结 9 1033
轻奢々
轻奢々 2020-12-13 16:26

How can I display an infinity symbol (like the one in the picture) using HTML?

9条回答
  •  天命终不由人
    2020-12-13 17:13

    Like ЯegDwight said, you can use the HTML entity ∞ or . A easy source of getting these codes, is to look at this entity list.

    You can also use them in CSS, which was what I was looking for, just like font-awesome does. A simple CSS based solution would be to have something like:

    .infinity-ico:before {
        content: '\221E';
    }
    

提交回复
热议问题