iTalk
Mitglied
Hallo. Ich bastle gerade an meiner ersten eigenen Homepage und ich habe folgendes Problem:
Ich möchte, das der weiße Content-Bereich zentriert ist, das Headerbild auch aber der Text nicht.
Der Code:
Wie kann ich das bewerkstelligen? Danke!
Ich möchte, das der weiße Content-Bereich zentriert ist, das Headerbild auch aber der Text nicht.
Der Code:
<html>
<head>
<title>Testseite</title>
<style type=text/css>
#content {
background-color: #fff;
margin-top: 50px;
width: 750px;
height: 1000px;
border: none;
}
a{outline:none;color:#6b6b6b; font-size: 12px; text-decoration: none;}
a:hover {color: #888888; font-size: 15px; text-decoration: none;}
a:link {color: #6b6b6b; font-size: 12px; text-decoration: none;}
a:active {color: #888888; font-size: 12px; text-decoration: none;}
a:visited {color: #6b6b6b; font-size: 12px; text-decoration: none;}
</style>
</head>
<body style="background: #c1c1c1; font-family: arial;">
<center><div id="content"><img style="margin-top: 20px;" src="test_head.jpg"><br/>DIESER TEXT SOLL NICHT ZENTRIERT SEIN!!</center>
</div>
</body>
</html>
Wie kann ich das bewerkstelligen? Danke!