
Pie loads first time, but not after.
I've used PIE in only 1 place and for some reason it loads in IE8 the very first time (and any time you clear the cache) but it doesn't load on any subsequent page loads.
The CSS
Code:
.box_wrapper {
float: left;
width: 280px;
height: 300px;
position: relative;
}
.box {
padding: 15px;
width: 250px;
-moz-box-shadow: 0 0 20px #000000;
-ms-box-shadow: 0 0 20px #000000;
-o-box-shadow: 0 0 20px #000000;
-webkit-box-shadow: 0 0 20px #000000;
box-shadow: 0 0 20px #000000;
position: absolute;
top: 0px;
left: 0px;
z-index: 10000;
behavior: url(PIE.htc)!important;
}
The HTML
Code:
<div class="box_wrapper">
<div class="box">
MY CONTENT HERE
</div>
</div>
I also have this in my .htaccess file:
AddType text/x-component .htc
-----------------------EDIT------------------------
Everything seems to work fine in IE8 Compatibility Mode, but not when it's switched off.