Hallo zusammen,
habe ein Problem mit der Darstellung folgendes Codes:
In IE 7 werden die Text-Abstände korrekt angezeigt, beim Mozilla 3.0 überschneiden sich diese.
Woran kann das liegen?
Gruss
habe ein Problem mit der Darstellung folgendes Codes:
HTML:
<!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=utf-8" />
<title>Test</title>
[PHP]
<style type="text/css">
body {
background-color: gray;
color: white;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 8.5pt;
padding: 0;
margin: 0;
}
#wrapper {
background-color: white;
color: black;
width: 777;
height: 577;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 8.5pt;
padding: 0;
margin: 0;
border: 0;
}
#mab-details {
position: absolute;
background-image: url(Produkte/MAB/MAB425/Bilder/MAB425_01.gif);
width: 261px;
height: 369px;
color: black;
padding: 48px 10px 0px 48px;
margin: 0px 0px;
}
.ueberschrift {
font-size: 1.8em;
margin-bottom:-15px;
}
.untertitel {
font-weight: bold;
font-size: 1.0em;
margin-bottom:-20px;
}
</style>
[/PHP]
</head>
<body>
<div id="wrapper">
<div id="mab-details">
<h1 class="ueberschrift">Ueberschrift 1</h1>
<h2 class="untertitel">Slogan test test test</h2>
<p>Beschreibung 123 ... Beschreibung 123 ...</p>
</div>
</div>
</body>
</html>
In IE 7 werden die Text-Abstände korrekt angezeigt, beim Mozilla 3.0 überschneiden sich diese.
Woran kann das liegen?
Gruss