div verschachtelung problem/hilfe

Status
Nicht offen für weitere Antworten.

scsi

Grünschnabel
ich hab mal nen bild von dem layout erstellt was ich machen will:

http://www.scsimodo.de/tutorials/css-problem.jpg

ich habe schon mehrere versionen ausprobiert zb durch floating von containern.
kurze grobe beschreibung:

HTML:
<div id='a'>a</div>
<div id='b'>b</div>
<div id='c'>c</div>
<div id='d'>d</div>

#a { float:left; }
#b { float:left; }
#c { float:left; }
#d { }

ich bin aber mit den ergebnissen nicht zufrieden da bei allen varianten schwierigkeiten aufgetreten sind. mich würde gerne interessieren wie ihr dieses problem angehen würdet:

- 4 container/felder nebeneinander
- die letzten 3 sollen kleinere Schrift haben und sollen am unteren rand vom container angezeigt werden
- die container sollen per border abgegrenzt sein


jetzt noch ne andere sache: wie kann ich ein in nem container befindliches element nach unten ausrichten?
HTML:
<div class='container' style='width:200px; height:200px;'>
 text
</div>
jetzt würde ja text in dem 200x200 großen container links oben in der ecke stehen.
mit
HTML:
text-align:
bekomme ich es ja horizontal ausgerichtet.
aber wie bekomm ich es in die mitte oder nach unten?
 
Zuletzt bearbeitet:
Hier ein CSS-Modell mit 4 nebeneinander floatenden DIVs:

HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title></title>

<style type="text/css">
<!--
div.mainbox
{
margin: 10px auto;
width: 605px;
border: 0px solid #000;
}

div.box-a
{
float: left;
width: 250px;
height: 30px;
border-top: 1px solid #000;
border-right: 1px solid #000;
border-bottom: 1px solid #000;
border-left: 1px solid #000;
margin: 0;
padding: 0;
}

div.box-a p
{
font-size: 12px;
line-height: 12px;
margin: 9px 0 0 0;
padding: 0 0 0 10px;
}

div.box-b
{
float: left;
width: 150px;
height: 30px;
border-top: 1px solid #000;
border-right: 1px solid #000;
border-bottom: 1px solid #000;
margin: 0;
padding: 0;
}

div.box-c
{
float: left;
width: 100px;
height: 30px;
border-top: 1px solid #000;
border-right: 1px solid #000;
border-bottom: 1px solid #000;
margin: 0;
padding: 0;
}

div.box-d
{
float: right;
width: 100px;
height: 30px;
border-top: 1px solid #000;
border-right: 1px solid #000;
border-bottom: 1px solid #000;
margin: 0;
padding: 0;
}

div.box-b p, div.box-c p, div.box-d p
{
font-size: 10px;
line-height: 10px;
margin-top: 20px;
text-align: right;
padding: 0 10px 0 0;
}

div.clear
{
clear: both;
height: 0;
font-size: 0;
margin: 0;
padding: 0;
}
-->
</style>

</head>
<body>

<div class="mainbox">

     <div class="box-a"><p>box a</p></div>

     <div class="box-b"><p>box b</p></div>

     <div class="box-c"><p>box c</p></div>

     <div class="box-d"><p>box d</p></div>

     <div class="clear"></div>

</div>

</body>
</html>
  • Browsercheck: FF 1.0.2, IE 6.0, MOZ 1.6, NN 7.0, OP 8.50
 
Status
Nicht offen für weitere Antworten.
Zurück