Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > easy html ?

Reply
Thread Tools

easy html ?

 
 
Peter Schaurer
Guest
Posts: n/a
 
      05-28-2005
Hello

Why does the following example not work ? (firefox 1.0.2)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Show me Frames</title>
</head>
<frameset cols="40%,60%*">
bla
<frameset rows="20%,80%">
bla
</frameset>
</frameset>
</html>

Peter



 
Reply With Quote
 
 
 
 
Els
Guest
Posts: n/a
 
      05-28-2005
Peter Schaurer wrote:

> Hello
>
> Why does the following example not work ? (firefox 1.0.2)
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
> "http://www.w3.org/TR/html4/frameset.dtd">
> <html>
> <head>
> <title>Show me Frames</title>
> </head>
> <frameset cols="40%,60%*">
> bla
> <frameset rows="20%,80%">
> bla
> </frameset>
> </frameset>
> </html>
>
> Peter


Because there are no frames.
A frameset consists of frames.
It is possible to have only framesets in a frameset, but the most
inner frameset will need frames.
Also, there is no 'bla' afaik inside a frameset.
The content of a frame is really the content of another html page,
which is called by the frame:
<frame src="somepage.html">

--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
 
Reply With Quote
 
 
 
 
mscir
Guest
Posts: n/a
 
      05-28-2005
Peter Schaurer wrote:

> Hello
> Why does the following example not work ? (firefox 1.0.2)
> ...
> Peter


I'd read a few online frameset tutorials to familiarize yourself with
frameset basics:

http://elated.com/tutorials/authoring/html/framesets/
http://www.manda.com/frames/
http://www.sylbek.de/main/help/tutor...s/frameset.htm
http://www.designertoday.com/tabinde...opDefault.aspx

Mike
 
Reply With Quote
 
Hywel Jenkins
Guest
Posts: n/a
 
      05-28-2005
In article <d7ankd$39b$04$>,
says...
> Hello
>
> Why does the following example not work ? (firefox 1.0.2)
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
> "http://www.w3.org/TR/html4/frameset.dtd">
> <html>
> <head>
> <title>Show me Frames</title>
> </head>
> <frameset cols="40%,60%*">
> bla
> <frameset rows="20%,80%">
> bla
> </frameset>
> </frameset>
> </html>


It's completely wrong. Where are your <frame> elements? Where did you
find that code?

--
Hywel

Kill the Crazy Frog
http://www.petitiononline.com/crzyfrg/
 
Reply With Quote
 
dorayme
Guest
Posts: n/a
 
      05-28-2005
> From: "Peter Schaurer" <>

> Why does the following example not work ? (firefox 1.0.2)
>
> <frameset cols="40%,60%*">


100% is taken, what is the * for?

If you want a third column, you would need to put in a comma and leave room
for some width. I don't think browsers are philosophical enough to say: "Ah,
a third column of no width, interesting, I will display none but I *know* it
is *not* there"

If you want the second col to take up what is left after the first, leave
out the 60%

dorayme

 
Reply With Quote
 
Mark Parnell
Guest
Posts: n/a
 
      05-30-2005
Previously in alt.html, mscir <> said:

> I'd read a few online frameset tutorials to familiarize yourself with
> frameset basics:


Then read a few things about why frames are a bad idea in the first
place:

http://www.htmlhelp.com/design/frames/whatswrong.html
http://html-faq.com/htmlframes/?framesareevil
http://dorward.me.uk/www/frames/
http://www.google.com/webmasters/2.html (see under "Your page uses
frames")
http://www.markparnell.com.au/articles/frames.php

--
Mark Parnell
http://www.clarkecomputers.com.au
alt.html FAQ :: http://html-faq.com/
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Is it reasonably easy easy to something like this with python? Bruno Desthuilliers Python 5 08-29-2007 07:40 AM
Stripping audio from qa DVD. Easy or not so easy? GJ Computer Support 1 05-23-2007 02:03 AM
Easy way to remove HTML entities from an HTML document? Robert Oschler Python 8 07-31-2004 02:03 AM
RE: Easy way to remove HTML entities from an HTML document? Robert Brewer Python 0 07-25-2004 08:21 PM
easy to look at and easy to maintain web page menuing system. Hazzard ASP .Net 2 04-06-2004 03:51 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57