CSS Font “Helvetica Neue”

前端 未结 5 1352
有刺的猬
有刺的猬 2021-01-30 08:58

I often see the websites using font \"Helvetica Neue\". Is this font safe to use, like eg. Arial? Or do the browsers have trouble rendering it or not many machines have this fon

5条回答
  •  长情又很酷
    2021-01-30 09:27

    This font is not standard on all devices. It is installed by default on some Macs, but rarely on PCs and mobile devices.

    To use this font on all devices, use a @font-face declaration in your CSS to link to it on your domain if you wish to use it.

    @font-face { font-family: Delicious; src: url('Delicious-Roman.otf'); } 
    @font-face { font-family: Delicious; font-weight: bold; src: url('Delicious-Bold.otf'); }
    

    Taken from css3.info

提交回复
热议问题