Probleme mit Position

Status
Nicht offen für weitere Antworten.

mrLetto

Grünschnabel
Hm, wahrscheinlich eher ein Anfängerproblem obwohl ich in CSS ziemlich erfahren bin. Als erstes mal mein Code:

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
 
Hi,

die Floatumgebung gehört noch mit Hilfe der clear-Eigenschaft aufgehoben und so der normale Textfluss wieder hergestellt, damit die umschliessende Box vom Inhalt am unteren Elementrand nicht überlappt wird, siehe hierzu http://positioniseverything.net/easyclearing.html.

Code:
.clearfix:after {
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

Die Klasse .clearfix rufst du dann im DIV #main auf:

Code:
<div id="main" class="clearfix"> ... </div>
 
Status
Nicht offen für weitere Antworten.
Zurück