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; }
Author: Sanjay Jain
What,s The Use of UTF-8 in HTML CSSWhat,s The Use of UTF-8 in HTML CSS
0 Comment July 12, 2019July 12, 2019
What,s The Use of UTF-8 in HTML CSS Character sets are not compatible in multilingual environments. UTF-8 supports) all the characters, languages, punctuation, and symbols which are available in the world. Syntax <meta charset=”UTF-8″>
Pure HTML CSS Multi Level Animated Drop Down MenuPure HTML CSS Multi Level Animated Drop Down Menu
0 Comment July 11, 2019July 11, 2019
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 […]