Author: Sanjay Jain

Multiple Backgrounds in HTML CSSMultiple Backgrounds in HTML CSS

Multiple Backgrounds in HTML CSS HTML Code <div class=”s1″></div>   CSS Code .s1{width:1000px; height:500px; background-color:yellow; background-image:url(logo.png), url(logo.png), url(logo.png), url(logo.png), url(logo.png); background-repeat:no-repeat, no-repeat, no-repeat, no-repeat, no-repeat; background-position:bottom left, bottom right, center center, top left, top right; }

Pure HTML CSS Multi Level Animated Drop Down MenuPure HTML CSS Multi Level Animated Drop Down Menu

Pure HTML CSS Multi Level Animated Drop Down Menu HTML Code of This Menu <!doctype html> <html> <head> <meta charset=”utf-8″> <title>Untitled Document</title> <link href=”menu.css” rel=”stylesheet”> </head> <body> <!– menu start –> <ul> <li>Home <div class=”a1″> <ul> <li>Item 1 <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> <li>Item 4</li> </ul> </li> <li>Item 2</li> <li>Item 3</li> <li>Item 4 […]