我目前正在尝试使用 CSS 的边框图像将自定义边框应用于 div。我觉得我有所有正确的代码,但我的图像没有显示为边框。有人可以看看这个 html/css 代码并告诉我我做错了什么吗?
HTML:
<div id="box">
</div>
CSS:
body { text-Align: center; } /* CENTER ALIGN FOR IE */
#PC_Attack_Lightbox {
/*** CENTER ALIGN BOX ***/
text-Align: left;
margin: 0 auto;
/*** SET WIDTH & HEIGHT ***/
width: 500px;
height: 500px;
background: #EBF5FF; /* SET BG */
/*** APPLY BORDER-IMAGE ***/
border:35px outset brown;
-moz-border-image:url(img/wood2.jpg) 25 30 10 20 repeat;
-webkit-border-image:url(img/wood2.jpg) 25 30 10 20 repeat;
border-image:url(img/wood2.jpg) 25 30 10 20 repeat;
}