Hi Friends...
This is an easy tutorial suitable for those fairly new to CSS. This tutorial will teach you how to create a simple Div border effect with Image.
Your Code is as under
<!DOCTYPE html><style>
#para{
text-align:center;
padding:20px;
width:340px;
margin: 0 auto;
/* Set the border and border image properties */
border:30px solid transparent;
border-image:url(http://demo.tutorialzine.com/2013/10/css3-features-you-can-finally-use/assets/img/border.png) 30 30 round;
}
</style>
<br />
<div id="para">
Hello C# Jadu</div>
</div>
</html>
Hello C# Jadu
0 comments:
Post a Comment