CSS3Pie を動作させるのに問題があります。SO と Google でいくつかの投稿を読みましたが、まだ機能していないようです。
SASS とコンパスを使用して CSS を記述しているため、SCSS と CSS の両方の出力を以下に掲載します。
SCSS:
$pie-behavior: url(PIE.htc);
$pie-base-class: pie-element;
#header{
background:#fff;
width:$full-width;
height:100px;
margin:$margin-center;
ul{
width:600px;
height:$nav-height - 2px;
padding:55px 0 0;
margin:0 0 0 250px;
li{
@include inline-block;
font-size:$font-size - 2px;
font-weight:bold;
padding:20px 10px;
}
a{
color:#282828;
text-transform:uppercase;
&:hover{
color:red;
}
}
}
#aabw{
background:url('../images/aabw.jpg') no-repeat;
height:190px;
width:110px;
position:relative;
z-index: 0;
float:right;
margin: 0 270px 0 0;
@include pie-element(relative);
@include box-shadow(#BBBBBB 0px -78px 6px);
}
}
出力された CSS:
#header #aabw {
background: url("../images/aabw.jpg") no-repeat;
height: 190px;
width: 110px;
position: relative;
z-index: 0;
float: right;
margin: 0 270px 0 0;
behavior: url(PIE.htc);
position: relative;
-webkit-box-shadow: #bbbbbb 0px -78px 6px;
-moz-box-shadow: #bbbbbb 0px -78px 6px;
box-shadow: #bbbbbb 0px -78px 6px;
}
私の PIE.htc は部屋のディレクトリ (インデックスと同じフォルダー) にあり、ローカルで実行しようとしています。私は pie.scss ファイルをたどりましたが、何も機能していないようです。明らかに何かを見逃している可能性があります。
ありがとう