I am currently experimenting with CSS's border-image property to create a custom border for a div element. Despite having what I believe to be the correct code, my image is not displaying as the border. Can someone please review this HTML/CSS code and help me identify any mistakes?
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;
}