此代碼僅在Google Chrome和Mozilla Firefox中顯示邊框圖像,但不顯示在IE 9或10中。需要對CSS和WordPress中使用的代碼進行哪些更改?有沒有我可以用來實現這個插件?如何使用CSS來顯示邊框圖像?
.Offset1 {
width:525px;
height:auto;
float:left;
margin-left:8px;
border-style:double;
border-width:30px 30px 30px 30px;
-moz-border-image:url("<?php echo $vtheme_options['logo']; ?>") 30 30 30 30 stretch stretch;
-webkit-border-image:url("<?php echo $vtheme_options['logo']; ?>") 30 30 30 30 stretch stretch;
-o-border-image: url("<?php echo $vtheme_options['logo']; ?>")30 30 30 30 stretch stretch;
border-image:url("<?php echo $vtheme_options['logo']; ?>") 30 30 30 30 stretch stretch;
behavior:url(PIE.htc);
position: relative;
}
@media (max-width: 767px) {
.Offset1{ width:222px;
margin-left:3px;
}
}
你在哪裏有背景圖片?或者你的意思是'邊界圖像'? IE 9及以下版本不支持'border-image'。對於IE 10它可能會與'-ms-border-image'一起工作 – 2013-02-25 12:30:27
offset1是類 – sumitdadhich 2013-02-25 12:32:43
這已經是.offset1 – sumitdadhich 2013-02-25 12:36:16