Hallo.
Ich glaube, ich hab es bald, nun habe ich nur noch folgendes Problem:
Der Abstand nach unten im Iframe ist zu groß. Wie stell eich es an, das der den Abstand so einstellt, das er alles zeigt und 2 Pixel margin hat? Der Rand von 2 Pixeln ist nun gewollt.
http://home.arcor.de/dab268/design/design.html
design.htm------------
<table class="left">
<tr><th class="lheader">Family</th></tr>
<tr><td class="lmain">
<iframe class="linside" src="link.html" frameborder="0">
<p>Ihr Browser kann leider keine eingebetteten Frames anzeigen:
Sie können die eingebettete Seite über den folgenden Verweis
aufrufen: <a href="link2.html">Menü</a></p>
</iframe>
</td></tr>
</table>
---------------------------
style.css-----------------
h1,h2,h3,h4,p,ul,ol,li,div,td,th,address,blockquote,nobr,b,i {font-family:Arial,sans-serif;}
body.main {background-color:#EBEBEB; color:#000000; text-align:center;} /* Allgemeiner Body */
body.iframe {margin:0; padding:0;} /* Body von Iframes */
a {color:#000096; text-decoration:none; font-weight:bold;}
a:hover {color:#0000CC; text-decoration:none; font-weigth:bold;}
table.main {width:90%; border:0px; background-color:#EBEBEB;} /* Haupttabelle um alle anderen */
th.head {background-color:#AAAAAA; height:80px; background-image:url(bilder/header.gif);} /* Head: oberste Tabellenreihe */
td.middle {vertical-align:top; background-color:#EBEBEB;} /* Haupttabelle in der Mitte */
td.left {width:200px; background-color:#EBEBEB; vertical-align:top;} /* Hauptabelle links */
td.bottom {background-color:#CCCCCC; height:20px; font-size:9; background-image:url(bilder/headerk.gif); color:#FFFFFF;} /* Bottom: Unterste Tabellenreihe */
table.left {width:200px; border:0px; background-color:#CCCCCC; border-collapse:collapse; border-spacing:0;} /* Linke Tabelle um einzelne Rubriken */
th.lheader {background-color:#5555AA; width:200px; padding:0; height:20px; background-image:url(bilder/headerk.gif); color:#FFFFFF;} /* Rubrikenheader in der Linken Tabelle */
td.lmain {background-color:#0000A4; width:200px; padding:0; margin-left:2px; margin-right:2px; margin-bottom:2px; text-align:center;} /* Hauptteil in der Linken Tabelle */
table.linside {background-color:#CCE6FF; width:196px;} /* Linke Tabelle: Hauptteil (Innentabelle) */
table.middle {width:100%; border:0; background-color:#5555AA; border-collapse:collapse; border-spacing:0;} /* Mittlere Tabelle um einzelne Rubriken */
th.mheader {background-color:#5555AA; padding:0; background-image:url(bilder/headerk.gif); color:#FFFFFF;} /* Rubrikenheader in der mittleren Tabelle */
td.mmain {background-color:#5555AA; width:100%; padding:0;} /* Hauptteil in der mittleren Tabelle */
table.minside {background-color:#CCE6FF; width:100%;} /* Mittlere Tabelle: Hauptteil (Innentabelle) */
iframe.linside {width:196px;} /* IFrame: Hauptteil linke Tabelle(Innentabelle) */
--------------------------
link.html---------------------
<HTML>
<HEAD>
<link rel="stylesheet" href="style.css" type="text/css">
</HEAD>
<BODY class="iframe">
<table class="linside">
<tr><td>IFRAME</td></tr>
</table>
</BODY>
</HTML>
---------------------------
MfG
DAB268