Hallo,
ich wusste leider keine bessere Beschreibung dafür.
Ich möchte wie auf dem Bild zu sehen ist
Firefox
das das im IE6 und IE7 auch gleich aussieht
IE6
IE7
ich weis aber nicht wie :/
Der Abstand zu den unteren Text "Textlinks" und "TextRechts" ist mir zu viel.
könnte mir bitte das jemand zeigen ????
|
HTML Code
|
1
2
3
4
5
|
<div class="polaroid">' . tep_image(DIR_WS_IMAGES . $featured_products['products_image'], $featured_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '
<p>Titel</p>
<p class="links">Textlinks</p>
<p class="rechts">TextRechts</p>
</div>
|
|
Cascading Style Sheets
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
div.polaroid {
float:left;
background-color:#f5f5f2;
margin-left:10px;
margin-bottom:10px;
padding:10px;
border:1px solid #cac9c4;
font-size:11px;
/*
text-align:center;
*/
}
div.polaroid img {
display:block;
margin-bottom:10px;
border:1px solid #cac9c4;
}
p.links {
float:left;
font-size:11px;
}
p.rechts {
float:right;
font-size:11px;
}
|