bootstrap 3.2.0 glyphicons are not displaying in internet explorer

前端 未结 9 1864
伪装坚强ぢ
伪装坚强ぢ 2020-12-13 20:11

I am useing twitter bootstrap 3.2.0 and I use some glyphicons they work properly in ff, chrome, and opera but they are not displayed within the Internet Explorer.

T

9条回答
  •  离开以前
    2020-12-13 20:54

    This is too late to answer , but recently i faced issue with Angular 4 + grails as backend. For me all the resources in webapp folder in grails was setting the

    Cache-control : 'no-store'. 
    

    and there is no header like modified-since , or expires etc. This was causing the issue. I updated the application.yml like below to fix this issue , and it worked for me.

    grails:
        resources:
            cachePeriod: 10 
    

    and this will set response header like below

    Cache-Control   : max-age=10
    

提交回复
热议问题