解决ie8及更低版本的浏览器强制升级代码

<!--[if IE 8]>  
      <style>  
      body{
        overflow:hidden;
      }
      .browser{
        background:rgba(0,0,0,0.5); 
        filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#E5000000,endcolorstr=#E5000000);
        color: #ffffff;
        text-align: center;
        font-size: 20px;
        padding: 8px;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 12;
        padding-top: 300px;
      }  
      </style>  
    
      <p class="browser">您的浏览器版本过低,请到<a href="http://browsehappy.osfipin.com/">这里</a>更新,以获取最佳体验</p>

    <![endif]-->