Nicht mehr ganz neu hier
Hi Leute,
also ich wollte gerade anfangen mein CMS mal wieder eine neue Haube zu verpassen, will grade anfangen mit dem Loginbereich und da stoße ich auf das Problem das margin-top nicht funktioniert. Da ihr ja vollprofis seid dahcte ich ich frag euch einmal.
Hier mal der HTML Code
und hier der CSS Code:
mein Probem ist das ich zwar "vertragsnummer" mit margin-left vom linken rand aus positionieren kann aber nicht mit margin.top.
Ich hoffe ihr könnt mir helfen.
mfg max
also ich wollte gerade anfangen mein CMS mal wieder eine neue Haube zu verpassen, will grade anfangen mit dem Loginbereich und da stoße ich auf das Problem das margin-top nicht funktioniert. Da ihr ja vollprofis seid dahcte ich ich frag euch einmal.
Hier mal der HTML Code
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>Content Managment System (c)2010</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="shortcut icon" href="css/favicon.png">
</head>
<body>
<div id="content_div">
<h2>Vertragsnummer</h2>
</div>
</body>
</html>
HTML:
@charset "utf-8";
/* CSS Document */
body {
color:#0000FF;
font: 100% Verdana, Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
#content_div {
margin:0 auto;
width:600px;
height:300px;
background:#336699;
margin-top:23px;
}
h2 {
display:inline;
margin-top:40px;
margin-left:80px;
}
Ich hoffe ihr könnt mir helfen.
mfg max