Hallo Leute!
Habe nen Problem mit ner Fläche die im IE nicht erscheint.
Über ein Textlink(hover-action) soll eine Fläche erscheinen. Im Mozilla Firefox funktionierts, jedoch im IE nicht.
Kann mir einer sagen wo das Problem liegt?
Vielen Dank schon mal.
Hier mal der Code:
	
	
	
		
				
			Habe nen Problem mit ner Fläche die im IE nicht erscheint.
Über ein Textlink(hover-action) soll eine Fläche erscheinen. Im Mozilla Firefox funktionierts, jedoch im IE nicht.
Kann mir einer sagen wo das Problem liegt?
Vielen Dank schon mal.
Hier mal der Code:
		Code:
	
	<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
    <head>
        <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
        <meta name="generator" content="artkraft">
        <title>Unbenannte Seite</title>
        <style type="text/css" media="screen"><!--
        
        a.link span{display: block; position: absolute;}
        a.link:hover span{display: block; position: absolute; top: 20px; left: 20px; width: 200px; height: 200px; background-color: #cc3300;}
       
       --></style>
    </head>
    <body bgcolor="#ffffff">
        <a class="link" href="#">Bildlink<span></span></a>
        
        
    </body>
</html>