und so wäre ohne Javascript?
Code:
<html>
<head>
<title>Beautyretouche</title>
<style type="text/css">
body{
font-family:Verdana,Tahoma,Arial;
font-size:12px;
color:#333333;
background-color:#000000;
margin:10px;
}
#wechsel a {
background: url(Vorher.jpg) no-repeat;
display:block; width:527px; /* Linkbereich begrenzen */
}
#wechsel img {
display:block; width:527px; height:800px; border:0;
}
#wechsel a:hover img {
visibility: hidden;
}
#wechsel a:hover { /* Workaround fuer IE 5.5 und 6 */
border:0;
}
* html #wechsel a {
margin-right:1px;
}
* html #wechsel a:hover {
width:334px; margin-right:0; /* Workaround fuer IE 5.01 */
}
</style>
</head>
<body>
<p id="wechsel">
<a href="#" target="_blank"><img src="Nachher.jpg" alt="Name" /></a>
</p>
<p>Für das Original mit der Maus über das Bild fahren</p>
</body>
braucht es dann auch die Größenbeschränkung für die Bilder?
Oder ist das für den Bereich des Mouse-Over-Effektes?