function detectIE(userAgent) {
userAgent = userAgent || navigator;
return userAgent.indexOf("MSIE ") > -1 || userAgent.indexOf("Trident/") > -1 || userAgent.indexOf("Edge/") > -1;
}
<div class="warning-ie"> Ваш браузер устарел!!!</div>
.warning-ie{
font-size:30px;
width:100%;
height:100px;
line-height:100px;
text-align:center;
color:#ff0000;
background:#000;
display:none;
}
.show{
display:block;
}
if(detectIE()){
document.querySelector('.warning-ie').classList.add('.show');
}
<!--[if IE]>
<link href="css/badbrowser.css" rel="stylesheet">
<![endif]-->
(для IE 10-11)
<style>
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
nav {
display:none;
}
body {
background-color: #e51c23;
padding-top: 70px;
}
}
</style>