Monday, 29 April 2013
How to Create Multiple Backgrounds in html with CSS3
.box{
width:600px;
height:400px;
background:url(theworld_256.png), url(t_5.jpg);
background-repeat:no-repeat;
background-position: center bottom, left top;
padding:10px;
text-align:center;
}
Like as :
How to create inner shadow in Html with css
.box{
width:300px;
height:300px;
background:#FF9;
padding:10px;
-moz-box-shadow: inset 0 0 15px 10px #888;
-webkit-box-shadow: inset 0 0 15px 10px#888;
box-shadow: inset 0 0 15px 10px #888;
text-align:center;
}
Like as :
Saturday, 27 April 2013
How to Create Marquee Effects Without Marquee Tag in HTML5
Just copy and paste this...
Head section is :
Body section is :
Head section is :
Body section is :
Subscribe to:
Posts (Atom)

