Struppi: Dieser Scrollbalken ist doch ein Witz!

Beitrag lesen


Ok... hier das Frameset, gefolgt von der MainFrame Seite leitbild.htm
Habe den Text entfernt. Es ist alles auf Pixel abgerechnet.

<head>
<title>titel</title>

</head>

<frameset rows="550,*" frameborder="0" border="0" framespacing="0" >
<frameset cols="240,740,*" frameborder="0" border="0" framespacing="0">
  <frameset rows="80,470" frameborder="0" border="0" framespacing="0">
    <frame src="vevdaj_logo.htm" name="LeftTopFrame" scrolling="NO" noresize marginheight="15" marginwidth="18">
    <frame src="navigation.asp" name="navigation" scrolling="no" marginheight="0" marginwidth="0">
  </frameset>
  <frameset rows="80,470" cols="740" frameborder="0" border="0" framespacing="0">
    <frame cols="740" rows="80" src="banner.htm" name="TopFrame" scrolling="NO" noresize marginheight="0" marginwidth="0" frameborder="0">
<frame cols="740" rows="470" src="homepage.htm" name="MainFrame" scrolling="auto" marginheight="0" marginwidth="0" frameborder="0" noresize>
  </frameset>
  <frame src="RightFrame.htm" name="RightFrame" scrolling="NO" noresize marginheight="0" marginwidth="0" frameborder="0">
</frameset>
<frame src="BottomFrame.htm" name="Bottomframe" scrolling="NO" noresize marginheight="0" marginwidth="0" frameborder="0">
</frameset>

Das ist krank.

Das sowas mit ein paar Zeilen CSS auch geht weißt du?

aber na gut, das main Frame:
<frame cols="740" rows="470" src="homepage.htm" name="MainFrame"

ist 740pixel breit.

Die Tabelle:

<table border=0 width="740px" cellpadding=0 cellspacing=0>

ebenfalls (wobei in HTML Attributen nur % als Einheit erlaubt ist Pixel ist Standard). Das der Body i.d.R. einen Innenabstand hat ignorierst du.

Aber auch das :

<table border=0 width="740px" cellpadding=0 cellspacing=0>
     <table border=0 width="740px" height="470px" cellpadding="0" cellspacing="0">
       <table border=0 width=100% cellpadding=0 cellspacing=0>

ist heutzutage nicht mehr nötig und war es noch nie wirklich. Du verkaufst deinem Kunden ein hoffnungslos veraltetes Produkt.

Struppi.