Ich möchte gerne in einem DIV zwei p Elemente floaten.
Script für das angehängte Bild.
Egal wo ich das float und clear hin schreibä, die zwei p Elemente werden nicht nebeneinander angezeigt...
HTML:
<div id="stand"><p class="links">Home > XYZ<p class="rechts">Drucken</div>
HTML:
/* Stand */
#stand {
margin: 0px auto 20px;
padding: 0px;
display:block;
width: 560px;
border-bottom: 1px dotted #666666;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
background-color:#99FFCC;
}
#stand p.links {
display: block;
width: 280px;
background-color:#00CCCC;
}
#stand p.rechts {
display: block;
width: 280px;
text-align:right;
background-color:#CC6666;
}
/* /Stand */
Script für das angehängte Bild.
Egal wo ich das float und clear hin schreibä, die zwei p Elemente werden nicht nebeneinander angezeigt...