IE10以下优雅降级(作为范例)

扒下来一段 优雅降级的代码。

		<!--[if lt IE 10]>
<style>
    .ie-tip{margin-top: 100px;font-size: 16px;text-align: center;line-height: 1.5;}
    .ie-tip a{ outline: none;}
    .ie-tip .box{
        display: inline-block;
        margin: 30px;
    }
</style>
<div  class="ie-tip">
    <div>您正在使用的浏览器版本过低,将不能正常访问51信用卡官网</div>
    <div>请升级IE10版本以上,或更换Chrome浏览器。</div>
    <div>
        <div class="box">
            <a href="http://windows.microsoft.com/zh-CN/internet-explorer/downloads/ie">
                <img src="https://pic.51zhangdan.com/u51/storage/project_4771/e3e2d919-8b77-c179-db7d-39aba045c9e5.png">
                <div>升级IE浏览器</div>
            </a>
        </div>
        <div class="box">
            <a href="https://www.baidu.com/s?wd=chrome">
                <img src="https://pic.51zhangdan.com/u51/storage/project_4771/510a9081-4633-c65c-7b2d-d3358f414364.png">
                <div>下载Chrome浏览器</div>
            </a>
        </div>
    </div>
</div>
<![endif]-->

  

原文地址:https://www.cnblogs.com/chengyunshen/p/8385235.html