Jose Klee: Frame Border bei Mozilla und Opera

Beitrag lesen

Hallo,

Im untenstehenden Code habe ich per CSS den Frameborder-Bottom für mein Topframe als 1px Solid dunkelblau definiert. Im Internetexplorer wird es auch brav angezeigt. Im Mozilla und Opera aber nicht. Ich komme einfach nicht dahinter woran es liegt und wie man das beheben kann.

<head>
<title>www.chatpoint.ch</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>

<frameset rows="50,*" cols="*" frameborder="NO" border="0" framespacing="0">
  <frame src="top.php" name="top_Frame" frameborder="0" scrolling="NO" noresize marginwidth="0" marginheight="0" id="top_Frame" style="border-bottom:solid 1px darkblue; border-top:0; border-left:0; border-right:0;">
  <frame src="main.htm" name="content_Frame" frameborder="no" scrolling="no" noresize marginwidth="0" marginheight="0" id="content_Frame">
</frameset>