Hallo,
hab ein bestimmtes Problem:
Ich möchte 5 Grafiken in einem Viertelkreis anordnen, hierzu habe ich jetzt 5 Tabellenspalten gewählt und wollte mithilfe von CSS (margin-left) jede Grafik etwas weiter einrücken. Aber es funktioniert nicht.
Warum?
Hier mal der Code:
ZitatAlles anzeigen
<table height="100%" width="100%" border="1">
<tr height="20%" width="100%">
<td height="100%" width="100%">
</td>
</tr>
<tr height="20%" width="100%">
<td height="100%" width="100%">
</td>
</tr>
<tr height="20%" width="100%">
<td height="100%" width="100%">
</td>
</tr>
<tr height="20%" width="100%">
<td height="100%" width="100%">
</td>
</tr>
<tr height="20%" width="100%">
<td height="100%" width="100%" id="bild5">
</td>
</tr>
</table>
Dazu die CSS Datei:
ZitatAlles anzeigen
#bild1
{
margin-left:"175pt";
}#bild2
{
margin-left:"150pt";
}#bild3
{
margin-left:"125pt";
}#bild4
{
margin-left:"110pt";
}#bild5
{
margin-left:"100pt";
}
Habe es auch schon mit Div Containern probiert, aber das hat auch nicht funktioniert.
Kann mir jemand helfen?
mfg