Wordpress和边框图像

时间:2013-02-14 00:03:20

标签: image wordpress border

我需要帮助我正在处理的wordpress网站。我想要做的是在图像周围添加图像边框。我完全不知道怎么做,我有点困惑!这是我到目前为止的代码

.item_image {
width: 232px;
height: 170px;
padding-left: 40px;
padding-right: 40px;
border-image: url("/images/border.png") 30 30 30 30;
}

下面是边框图片。如果有人能够让我了解如何在图像周围找到这个边界,我将非常感激!

here is the border image

1 个答案:

答案 0 :(得分:0)

我设法解决了!答案如下:)

img {
box-shadow:none;
border-style: solid; 
border-width: 20px; 
-moz-border-image: url(images/border.png) 27 repeat; 
-webkit-border-image: url(images/border.png) 27 repeat; 
-o-border-image: url(images/border.png) 27 repeat; 
border-image: url(images/border.png) 27 fill repeat;    
}