Ich erstelle gerade eine Homepage mit HTML und habe tags wie <div style="margin-left:35px; margin-top:16px;"> drin.
Klappt auch eigentlich gut, nur, dass das Bild, was ich damit auf eine gewisse Position bringe, im Firefox wo ganz anders dargestellt wird, als im Internet Explorer.
Gibt es andere/bessere Anweisungen? Oder ist der einzige Weg 2 Versionen anzubieten?
Liebe Grüße,
Nadja.
Hallo Nadja,
versuchs mal hiermit..
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
</head>
<STYLE TYPE="text/css">
.image {
margin-left:35px;
margin-top:16px;
}
</STYLE>
<!--[if IE]>
<style>
.image {
margin-left:35px;
margin-top:4px;
}
</style>
<![endif]-->
<body>
<div class="image" ><img src="image.jpg" width="100" height="100" /></div>
</body>
</html>
Gruß
Holger