• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

table

RobertN

New member
<table border="1" bgcolor="lightblue" bordercolor="black" cellpadding="0" cellspacing="0" summary="nix" width="150">

<tr><td><a href="">menlink</a></td></tr>
<tr><td><a href="">menlink</a></td></tr>
<tr><td><a href="">menlink</a></td></tr>
<tr><td><a href="">menlink</a></td></tr>
</table>

gibts irgeneine möglichkeit, wie ich eine solche tabelle machen kann, damit sie in opera und ns nicht total billig und beschissen aussieht, also auch dort ungefähr so wie in ie?

vor allem gehts um den klaren schwarzen rahmen

oder irgendwelche alternative lösungen?
 
<table border="0" bgcolor="#FFCC00" cellpadding="0" cellspacing="0" width="150">
<table border="0" cellpadding="2" cellspacing="2" width="150">
<tr><td><a href="">menlink</a></td></tr>
<tr><td><a href="">menlink</a></td></tr>
<tr><td><a href="">menlink</a></td></tr>
<tr><td><a href="">menlink</a></td></tr>
</table> </table>

Du meinst so etwa??
Einfach darüber noch ne Tabelle mit nem HG und ein bisschen mitm callpadding und cellspacing rumspielen!
 
so etwa nicht

will dass eine tabelle, wie ich sie im ersten thread hab in opera und ns wenigstens so ähnlich wie im ie aussieht

mit einem border von 1, der dann einfach wie eina schwarze dünne linie aussehen soll...
 
das problem is eher, dass, wenn ich mich so herumspiele

<table border="0" bgcolor="black" cellpadding="0" cellspacing="2" width="150">
<tr><td>
<table bgcolor="red" border="0" cellpadding="0" cellspacing="2" width="150">
<tr><td><a href="">menlink</a></td></tr>
<tr><td><a href="">menlink</a></td></tr>
<tr><td><a href="">menlink</a></td></tr>
<tr><td><a href="">menlink</a></td></tr>
</table>
</td>
</tr>

</table>

siehts im ie beschissen aus, bzw fehlen dann die unterteilungen zwischen den einzelnen td der inneren tabelle
 
dann musste halt umdenken und nicht die einzelne Tabelle sondern die Zellen einfärben

<TABLE WIDTH="250" BORDER="0" CELLSPACING="0" CELLPADDING="0" BGCOLOR="#000000">
<TR>
<TD>
<TABLE WIDTH="250" BORDER="0" CELLSPACING="1" CELLPADDING="0">
<TR>
<TD BGCOLOR="#FFFFFF"> </TD>
<TD BGCOLOR="#FFFFFF"> </TD>
<TD BGCOLOR="#FFFFFF"> </TD>
</TR>
<TR>
<TD BGCOLOR="#FFFFFF"> </TD>
<TD BGCOLOR="#CCCCCC"> </TD>
<TD BGCOLOR="#CCCCCC"> </TD>
</TR>
<TR>
<TD BGCOLOR="#CCCCCC"> </TD>
<TD BGCOLOR="#CCCCCC"> </TD>
<TD BGCOLOR="#999999"> </TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
schaut bei mir in jedem Browser gleich aus
 
Zurück
Oben