I would like to create a web application using Spring and .jspx web pages.
My question is, how can I add conditional comments for IE in jspx? They do not seem to be interpreted.
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
In addition, I would like my webpages to be HTML5 standards.
I tried some methods, but I had problems with incompatibility in IE9 (it seems that they do not recognize the header and section).
Edit:
Here is my main tag
<meta content="text/html" charset="UTF-8" http-equiv="content-type" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
But, if I look at the source in IE9, I do not see the link to html5shiv and my secondary css.
source
share