Bild (height="2") wird nur in Firefox angezeigt

Status
Nicht offen für weitere Antworten.

Q-Dog

Grünschnabel
Hallo,

folgendes Problem: bei mir wird im Rahmen einer Tabelle ein Bild, welches als Trennlinie gilt, mit heigth="2" zwar im Firefox jedoch nicht im IE angezeigt.

Nun wollte ich fragen ob IE da irgendwie ne generelle Sperre hat, was ich mir kaum vorstellen kann.

Naja hier der Code:
PHP:
<body bgcolor="#FFFFFF" text="#000000">

<table width="1005" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td colspan="3">
	<iframe src="top_navileiste.htm" name="topFrame" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" width="1005" height="158">
	</iframe>
    </td>
  </tr>
  <tr>
    <td align="left" valign="top">
	<iframe src="navi_start.htm" name="leftFrame" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" width="123" height="400">
	</iframe>
    </td>
    <td align="left" valign="top">
	<iframe src="main_start.htm" name="mainFrame" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" width="880" height="600">
	</iframe>
    </td>
    <td align="left" valign="top">
	<iframe src="right_start.htm" name="rightFrame" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" width="2" height="600">
	</iframe>
    </td>
  </tr>
  <tr>
      <td align="left" valign="top">
	<iframe src="empty.htm" name="emptyFrame" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" width="123" height="2">
	</iframe>
    </td>
    <td align="left" valign="top" colspan="2">
	!!<iframe src="unten.htm" name="untenFrame" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" width="882" height="2">!!
	</iframe>
    </td>
  </tr>
   <tr>
    <td colspan="3">
	<iframe src="bottom.htm" name="bottomFrame" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" width="1005" height="73">
	</iframe>
    </td>
  </tr>
</table>
</body>

Es handelt sich um die Zeile mit den !! , leider kann ich innerhalb eines codes keine Färbung vornehmen.

Schonmal vielen Dank im Vorraus.


MfG Q-Dog
 
Hi,

ich gehe jetzt mal davon aus, dass das Bild in dem Dokument unten.htm eingebunden ist. Von daher wäre der Quellcode dieses Dokuments ganz hilfreich, um der Ursache auf den Grund gehen zu können.
 
jo genau ist es.

Hier der Quelltext von unten.htm:
PHP:
<html>
<head>
<title></title>
<meta name="author" content="Q-Dog@work">
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<img src="media/unten_frame.gif" width="100%" height="100%" alt="">
</body>
</html>


is halt nur das Bild drinne :)
 
Bei mir zeigt der IE das Bild an, wenn ich für das Dokument einen Doctype deklariere:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
          "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta name="author" content="Q-Dog@work">
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<img src="media/unten_frame.gif" width="100%" height="100%" alt=""> 
</body>
</html>
 
ne wird trotzdem nur im Firefox angezeigt :-\

Edit:
habs jetzt mal angehängt: links Firefox / rechts sowohl Phase als auch IE

Edit2:
Wozu das Cache-leeren alles gut sein Oo.
Klappt nun, aber sehr sehr schräg ^^

Vielen Dank nochmal michaelsinterface.
 

Anhänge

  • firefox.jpg
    firefox.jpg
    10,2 KB · Aufrufe: 13
  • phase.jpg
    phase.jpg
    10 KB · Aufrufe: 16
Zuletzt bearbeitet:
Status
Nicht offen für weitere Antworten.
Zurück