In this chapter we will learn about some new border property introduced in css3, like border-radius, box-shadow and border-image. border-image will not work in IE9 but other 2 will work in IE+ and other latest browsers..
.myDiv {
border:1px solid #007de1;
border-radius:15px;
} .myDiv {
box-shadow: 10px 10px 5px #333333;
} .myDiv {
border-image:url(border.gif) 20 20 round;
-webkit-border-image:url(border.gif) 20 20 round; /* For Safari 5 and older */
-o-border-image:url(border.gif) 20 20 round; /* For Opera */
}