arronmattwills
Member
- Joined
- Dec 23, 2013
- Messages
- 323
- Points
- 18
Hi friends, recently we have worked on a responsive website.
We know that responsive website consists of html 5 and css 3 tags and properties.
We have used html 5 properties like article, section, header and footer.
But these tags Internet explorer doesn't support.
For that we have changed html 5 tags to divs.
After replacing the div s in place of html 5 tags also it is not working.
It is due to media queries issue.
So we have created a separate c s s file for Internet explorer 8 and it's below versions. In the following format.
Some where i have read there will be a hacking problem with this code. But as far as information based websites it will not effect, we can use it.
Please write your responses, if you have faced like this problem earlier.
We know that responsive website consists of html 5 and css 3 tags and properties.
We have used html 5 properties like article, section, header and footer.
But these tags Internet explorer doesn't support.
For that we have changed html 5 tags to divs.
After replacing the div s in place of html 5 tags also it is not working.
It is due to media queries issue.
So we have created a separate c s s file for Internet explorer 8 and it's below versions. In the following format.
So here lte means less than or equal to.<!--[if lte IE8 ]>
<link type="text/css" href="ie8.css" rel="stylesheet" />
<![endif]-->
Some where i have read there will be a hacking problem with this code. But as far as information based websites it will not effect, we can use it.
Please write your responses, if you have faced like this problem earlier.