Happy Codings - Programming Code Examples
Html Css Web Design Sample Codes CPlusPlus Programming Sample Codes JavaScript Programming Sample Codes C Programming Sample Codes CSharp Programming Sample Codes Java Programming Sample Codes Php Programming Sample Codes Visual Basic Programming Sample Codes


HTML & CSS Web Design

Html Css > Code Examples

Anchor background-position

Anchor background-position <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Anchor background-position</title> <style rel="stylesheet" type="text/css"> #header { width: 900px; height: 240px; background-image: url(images/background-image.jpg); background-position: top left; background-repeat: no-repeat } #menu { float: left; margin: 72px 0 0 20px; } #menu li { display: inline; list-style-type: none; line-height: 30px; } #menu li a { background-color: pink; background-position: top left; background-repeat: no-repeat; height: 40px; display: block; float: left; font-family: Helvetica; font-size: 13px; color: green; text-decoration: none; text-align: center } </style> </head> <body> <ul id="menu"> <li><a href="happycodings.com">happycodings</a></li> <li><a href="java.happycodings.com">java</a></li> <li><a href="android.happycodings.com">android</a></li> <li><a href="cplusplus.happycodings.com">cplusplus</a></li> <li><a href="php.happycodings.com">php</a></li> </ul> </body> </html>