Friends I think with the help of this page I can help you learning the html and some css designing...
For more help you can contact on Facebook

Monday 18 February 2013

Change Color Of the div on Mouse over


Here is the html page say index.html

<html>
    <head><title>Change Color</title>
   </head>
    <body>
        <div id="header"></div>
    </body>
</html>

and the css is  style.css


#header
{
    width:100px;
    height:100px;
    background-color:red;
    -webkit-border-radius:10px;
}
#header:hover
{
    background-color:purple;
}

hope it will be helping you...

No comments:

Post a Comment