Reputation: 216
He there,
I am currently working on a website with Bootstrap 3 + LESS css (http://www.helloerik.com/bootstrap-3-less-workflow-tutorial workflow), unfortunately I can't seem to get the IE8 support working. I have included the following line and scripts and they are linked correctly:
<!--[if lt IE 9]>
<script src="defaults/js/html5shiv.js"></script>
<script src="defaults/js/respond.js"></script>
<![endif]-->
I compile the less files to one big minified .css file: styles.css. So I do not use @import or anything. For those of you interested, the CSS file can be found here: https://dl.dropboxusercontent.com/u/64475407/styles.css and the index.html file can be found here: https://dl.dropboxusercontent.com/u/64475407/index.html
Really hope someone can help me out :)
York
Upvotes: 1
Views: 262
Reputation: 216
It happens to be that the internet explorer 8 emulation modus of the IE11 browser isn't working the same as an actual IE8 browser.. When I tried it in a real IE8 browser, it was actually working haha :)
Upvotes: 2
Reputation: 1
Twitter Bootstrap 3 isn't friendly for IE8 and below. I've had to use a polyfill to work with the border box-sizing which isn't supported in IE8
Give this a try: https://github.com/Schepp/box-sizing-polyfill
Upvotes: 0