0
#skiptrace {
  border-top: #FFFFFF; 
  border-left: #FFFFFF;
  border-right: #FFFFFF;
  border-bottom: #FFFFFF;
  width: 731px;
  height: 900px; 
}

the border still appears on my div below in IE.

I'm trying to incorporate

<!--[if IE]><style type="text/css">.pie, #skiptrace {behavior:url(PIE.htc);}</style><![endif]-->
<!--[if IE 7]><html class="ie7 oldie"> <![endif]-->

from this website.. which is pretty nice http://css3pie.com/

<div id="skiptrace">
  <iframe name="my_iframe" src="" id="skiptrace"></iframe>
</div>
4

1 に答える 1

1

このように使用してみてください:

<style type="text/css">
#skiptrace {
     border:1px solid #FFF;
     behavior:url(PIE.htc);
}
</style>

注: PIE.htc は、CSS ファイルではなくドキュメントに関連しています。

于 2012-12-27T18:10:03.973 に答える