frameranden niet zichtbaar in FF

Pagina: 1
Acties:

  • Artwido
  • Registratie: Maart 2001
  • Laatst online: 13-04 19:55
Ik ben met een pagina bezig die uit drie delen bestaat, boven, links (smal) en rechts (breed).

Ik wil de frames duidelijk afscheiden door een zichtbare rand.
In IE gebeurt dit ook maar in FF blijven de randen onzichbaar.
kan iemand mij plz vertellen wat ik moet aanpassen in de code?


code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>zwitsersewitjes startpagina</title>
</head>

<frameset rows="1,1,130,*" cols="*" frameborder="yes" border="1" framespacing="0">
  <frame src="2.htm">
  <frame src="1.htm">
  <frame src="head.htm" name="topFrame" scrolling="NO" noresize >
  <frameset rows="*" cols="152,*" framespacing="0" frameborder="yes" border="1" bordercolor="#000000">
    <frame src="linkerframe.htm" name="leftFrame" scrolling="NO" noresize>
    <frame src="main.htm" name="mainFrame">
  </frameset>
</frameset>
<noframes><body>
</body></noframes>
</html>

  • MBV
  • Registratie: Februari 2002
  • Laatst online: 20-04 19:00

MBV

Omdat je border per frame moet aangeven, zoals ook in de specificatie staat: http://www.w3.org/TR/html401/present/frames.html
Dat had je ook op http://validator.w3.org had kunnen zien.