Friends today I am going to tell u, how to create rounded corners on any div..
here is the html file index.html
<html>
<head>
<title>Rounded Corner</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header"></div>
</body>
</html>
and here is the css style.css
#header
{
width:100px;
height:100px;
background-color:purple;
-webkit-border-radius:10px;
}
here is the html file index.html
<html>
<head>
<title>Rounded Corner</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header"></div>
</body>
</html>
and here is the css style.css
#header
{
width:100px;
height:100px;
background-color:purple;
-webkit-border-radius:10px;
}
No comments:
Post a Comment