Wiedermal Problem mit horizontaler Scrollbar

Status
Nicht offen für weitere Antworten.

RalfHeinz

Erfahrenes Mitglied
Hallo,

ich habe ein Problem mit eriner horizontalen Scrollbar. Die Suche hat mir zwar einige Ergebnisse geliefert, aber zu einer Lösung bin ich dann doch nicht gekommen. Also werde ich hier mal meinen Code und mein Problem posten.

hier meine index.html
Code:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>meine Seite</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body bgcolor="#ffffff">

<table width="800px" height="600px" align="center" border=1>
   <tr height="140px">
      <td colspan="3" background="pics/site/banner.jpg" align="right" valign="bottom">
            <a class="text" href="site/impressum.html" target="content">Impressum</a>
      </td>
      <tr height="460px">
         <td>
            <!--Flashmenü-->
               <object bgcolor="#999999" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="120" height="460" id="2007-03-03-menu" align="middle">
                  <param name="allowScriptAccess" value="sameDomain" />
                  <param name="movie" value="2007-03-03-menu.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="bgcolor" value="#ffffff" /><embed src="2007-03-03-menu.swf" quality="high" scale="noscale" bgcolor="#ffffff" width="120" height="460" name="2007-03-03-menu" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
               </object>
            </div>
         </td>
         <td>
            <!--Content-->
               <iframe src="aktuell.html" width="540px" height="460px" name="content" frameborder="0"></iframe>
         </td>
         <td>
            <!--Ansprechpartner-->
               <iframe src="ansprechpartner_roeben.html" width="140px" height="460px" name="ansprechpartner" frameborder="0" scrolling="no"></iframe>
         </td>
      </tr>
   </table>

</body>
</html>

Mein Problem ist das iFrame ganz unten (Ansprechpartner). Ich habe in diesem iframe zwar scrolling="no" gesetzt, aber dennoch zeigt der mir eine horizontale Scrollbar an. Was mache ich falsch?
 
Hi,

bleibt von meiner Seite nur noch anzumerken, dass in HTML-Attributen, wie z.B. width und height, keine Einheit angegeben wird.

Code:
<table width="800px" height="600px" align="center" border=1>
 
Status
Nicht offen für weitere Antworten.
Zurück