I am trying to put conditional statements for internet explorer in my EJS template. It remains as comment in my ejs file. I tried below 2 approaches.
<!-- [if gte IE 8 ]>
<style>
.cs-fixed-header-table {
height: 500px;
}
</style>
<![endif] -->
AND
<!--[if gte IE 8 ]>
<link rel="stylesheet" href="IEstyle.css">
<![endif]-->
Anyone of these does not work. What can be done to achieve this ?
Thanks in advance.