F
flaexx
Guest
Hi,
ich hab eine Grafik als Hyperlink, aber die wird mit einem Blauen Rand angezeigt.
Ich poste den Quellcode mal dazu!
Wie bekomm ich den weg?
ich hab eine Grafik als Hyperlink, aber die wird mit einem Blauen Rand angezeigt.
Ich poste den Quellcode mal dazu!
HTML:
<html>
<head>
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="keywords" content="">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div id="banner"></div>
<div id="navi">
<a class="home" href="#"><img src="http://www.html.de/images/home.jpg"></a>
</div>
<div id="content"><br><br><br>Hier entsteht der Content Bereich</div>
</body>
</html>
HTML:
body
{
background-color: #bbbbbb;
text-decoration: none;
font-family: Verdana, Helvetica, sans-serif;
font-size: 12pt;
}
#banner
{
background-image: url(images/banner.jpg);
width: 750px;
height: 200px;
margin-left: 250px;
margin-top: 20px;
}
#navi
{
background-color: #C0C0C0;
width: 750px;
height: 23px;
top: 770px;
margin-left: 250px;
float: left;
text-align: center;
}
#content
{
background-color: #5F5F5F;
width: 750px;
height: 500px;
top: 793px;
margin-left: 250px;
text-align: center;
}
a.home
{
background: url(images/home.jpg) no-repeat right;
}