Is there an upside down caret character?

后端 未结 17 2064
Happy的楠姐
Happy的楠姐 2020-12-07 07:27

I have to maintain a large number of classic ASP pages, many of which have tabular data with no sort capabilities at all. Whatever order the original developer used in the d

17条回答
  •  佛祖请我去吃肉
    2020-12-07 08:17

    So I wanted the caret exactly as in OWA, so I downloaded office365icons.woff from https://owa.example.com/owa/prem/15.1.1913.10/resources/styles/fonts/office365icons.woff (have to be logged in to do it, so did it through browser) and then, copying the boiled-down style from the website:

      @font-face {
          font-family: 'Office365Icons';
          src: url('/fonts/office365icons.woff') format('woff');
          font-weight: normal;
          font-style: normal;
      }
    
      span.o-icon {
          font-family: 'Office365Icons';
          font-size: 14pt;
          line-height: 21px;
          color: #666;
      }
    

    And finally:

    
    

提交回复
热议问题