Block access to a site from IE8 or less with [if lte IE 8] - HTML CSS CSS

HTML CSS examples for CSS:Introduction

Description

Block access to a site from IE8 or less with [if lte IE 8]

Demo Code

ResultView the demo in separate window

<html>
 <head></head> 
 <body>
   ... <!--from  w  w w .  j  a  v  a2s.  c o  m-->
  <!--[if lte IE 8]>
            <p>As you are using an old browser some features of this
               web app may not work for you. </p>
        <![endif]--> ...  
 </body>
</html>

Related Tutorials