Segoe UI Light Font Not displaying properly in Google Chrome

前端 未结 5 2070
独厮守ぢ
独厮守ぢ 2021-01-02 06:41

I am using Segoe UI Light font in my website.

the css used is as follows.

.divMainHeader
{
font-family:Segoe UI;
font-size:28pt;
font-weight:lighter;         


        
5条回答
  •  感动是毒
    2021-01-02 06:52

    @font-face {
      font-family: 'Myfont';
      font-style: normal;
      font-weight: 200;
      src: local('Segoe UI Light'), local('SegoeUI-Light');
    
    }
    
    body{
        font-family: 'Myfont'; 
    }
    

    this code fixed my problem like yours

提交回复
热议问题