frames und w3c

Status
Nicht offen für weitere Antworten.
B

ByeBye 46085

hallo, habe mir gerade vorgenommen eine keine Page, welche ich am erstellen bin w3c konform zu machen. Leider habe ich in der index.htm immer einen Fehler mit Attribiten des Frames welche ich nicht wegbekomme und das Layout zu ändern.


1.

Line 9, column 44: there is no attribute "FRAMEBORDER"

<frameset rows="*" cols="150,*" frameborder="NO">

You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute.
ich bekomme den Fehler nur weg, wenn ich den Eintrag
entferne aber dann hat es auf dder Page so nen blöden Balken. Kann mit jemand helfen?

Danke
g chief


HTML:
 1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
 2: <html>
 3: <head>
 4: <title>Unbenanntes Dokument</title>
 5: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 6: <link rel="shortcut icon" href="http://homepage.de/fav.ico">
 7: </head>
 8: 
 9: <frameset rows="*" cols="150,*" frameborder="NO">
10:   <frame src="menu.htm" name="leftFrame" scrolling="NO" noresize>
11:   <frameset rows="200,*" frameborder="NO">
12:     <frame src="top.htm" name="topFrame" scrolling="NO" noresize>
13:     <frame src="home.htm" name="mainFrame">
14:   </frameset>
15: </frameset>
16: 
17: </html>
 
@Gumbo: ging leider nicht. Es ist wieder ein balken entstanden.

@kurtparis: super, genau du hast das gschrieben, worau fich nur antworte. hast du es so nötig deinen Postingcounter zu erhöhen

@all: hat vieleicht noch einer eine Idee?

g chief
 
Status
Nicht offen für weitere Antworten.
Zurück