Hallo,
ich befasse mich noch neu mit CSS und komme hier einfach nicht weiter. Vielleicht kann mir jemand helfen
Ich bekomme die Schrift Abacus einfach nicht in die Mitte des linken Containers plaziert und finde nicht woran das liegt.
Hier die CSS dazu
body {
background-color:lightblue;
width:980px;
max-width:90%;
margin-top:0px;
margin:0 auto;
}
#headercont{
width:980px;
height:120px;
margin-bottom:20px;
}
#header {
float:left;
text-align:center;
height:100px;
width:320px;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
-o-border-radius:5px;
margin-top:20px;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0084e2+0,61a3d8+52,0084e2+100 */
background: rgb(0,132,226); /* Old browsers */
background: -moz-linear-gradient(top, rgba(0,132,226,1) 0%, rgba(97,163,216,1) 52%, rgba(0,132,226,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,132,226,1) 0%,rgba(97,163,216,1) 52%,rgba(0,132,226,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,132,226,1) 0%,rgba(97,163,216,1) 52%,rgba(0,132,226,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0084e2', endColorstr='#0084e2',GradientType=0 ); /* IE6-9 */
}
#header h1 {
font-size:60px;
font-weight:bold;
color:blue;
font-family:Verdana;
}
#headtextfield {
padding-top:0;
float:right;
text-align:center;
height:70px;
width:60%;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
-o-border-radius:5px;
margin-top:0px;
}
#headtextfield h2 {
font-size:30px;
font-weight:bold;
color:blue;
font-family:arial;
}
Alles anzeigen
<!DOCTYPE html>
<html lang="de">
<head>
<title>Abacus</title>
<link rel="stylesheet" type="text/css" href="abacus.css">
</head>
<body>
<div id="headercont">
<div id="header">
<h1>Abacus</h1>
</div>
<div id="headtextfield">
<h2>Versenden Sie Faxe, SMS und Briefe schnell und einfach und telefonieren Sie sehr kostengünstig !</h2>
</div>
</div>
</body>
</html>
Alles anzeigen
Danke fuer jeden Hinweis!
Vagabundo