Hallo, Ich habe folgendes Problem, mein Menu funktioniert nicht
mit Internet Explorer 7, aber es funktioniert mit IE 6 und Mozilla, ich möchte dieses Menu auch mit IE 7 funktionsfähig
sein, hat jemand eine Idee?
hier ist der Code:
zuerst HTML :
text dokument 1.txt :
und info.css :
Danke in voraus
mit Internet Explorer 7, aber es funktioniert mit IE 6 und Mozilla, ich möchte dieses Menu auch mit IE 7 funktionsfähig
sein, hat jemand eine Idee?
hier ist der Code:
zuerst HTML :
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="stylesheet" type="text/css" href="info.css">
<title>Menu Test With Explorer 7
</title>
</head>
<body>
<?php
$menu=file_get_contents("1.txt");
echo "
<div id=\"navi\">
<a href=\"#\">Hallo<span class=\"showcase\">$menu</span></a></div>";
?>
</body>
</html>
text dokument 1.txt :
Code:
<table cellspacing="0" cellpadding="0" >
<tr>
<td><a href="#">in Table</a></td>
</tr>
</table>
und info.css :
Code:
#navi {
float: left;
width:auto;
}
#navi a {
color:blue;
}
#navi a:hover {
color:green;
background:none;
}
#navi a .showcase {
display:none;
}
#navi a:hover .showcase {
display:block;
background:#dddddd;
margin-top:-2px;
}
body
{
margin: 0px;
padding: 0px;
}
Danke in voraus
Zuletzt bearbeitet: