Hm, wahrscheinlich eher ein Anfängerproblem obwohl ich in CSS ziemlich erfahren bin. Als erstes mal mein Code:
CSS
---
HTML
Mein Problem ist nun das ich möchte das die Klassen content_right/left mit im div main sind. :/ Hier nochmal die ganze Problematik zum ansehen... Qüale mich nun schon seit Stunden damit herum - als eigentlich professioneller CSS Benutzer :U
CSS
Code:
body
{
font-family: Verdana;
font-size: 12px;
color: #00699C;
text-align: left;
background-color: #EFEFEF;
}
#main
{
background-color : #eef0f7;
width:982px;
border : 1px solid #d0d0d0;
margin: 0px auto;
}
.content_left
{
width: 350px;
height: 150px;
border : 1px solid #74a0cd;
background-color : #cadbec;
float: left;
}
.content_right
{
width: 350px;
height: 150px;
border : 1px solid #74a0cd;
background-color : #cadbec;
float: right;
}
.head
{
font-size: 18px;
text-align: center;
}
---
HTML
HTML:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="Fokus.css" type="text/css">
</head>
<body>
<div id="main">
<div class="head">
<h2>Carpe CSS</h2>
</div>
<div class="content_left">
<p>Carpe Diem...</p>
</div>
<div class="content_right">
<p>Carpe Noctem...</p>
</div>
</div>
</body>
Mein Problem ist nun das ich möchte das die Klassen content_right/left mit im div main sind. :/ Hier nochmal die ganze Problematik zum ansehen... Qüale mich nun schon seit Stunden damit herum - als eigentlich professioneller CSS Benutzer :U