You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Anchor background-repeat no...

55 lines
1.3 KiB
HTML

<!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" subLang="en-US" xml:subLang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Anchor background-repeat no-repeat</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: 60px 0 0 23px;
}
#menu li {
display: inline;
list-style-type: none;
line-height: 30px;
}
#menu li a {
background-color: orange;
background-position: top left;
background-repeat: no-repeat;
height: 30px;
display: block;
float: left;
font-family: Arial;
font-size: 13px;
color: blue;
text-decoration: none;
text-align: center
}
</style>
</head>
<body>
<ul id="menu">
<li><a href="www.happycodings.com">happycodings</a></li>
<li><a href="python.happycodings.com">python</a></li>
<li><a href="csharp.happycodings.com">csharp</a></li>
<li><a href="java.happycodings.com">java</a></li>
<li><a href="c.happycodings.com">c</a></li>
</ul>
</body>
</html>