473,715 Members | 5,414 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

tables for layout bugs question

Can anyone tell us the browsers/versions that exhibit errors
when tables are nested too deeply? And how many levels of
nesting produces errors?

(not a tables vs CSS question)

Nov 1 '06 #1
15 2157
Gary Peek <my********@myc ompanyname.comw rote:
>Can anyone tell us the browsers/versions that exhibit errors
when tables are nested too deeply? And how many levels of
nesting produces errors?
You are confused, using tables for layout causes problems, not errors.
>(not a tables vs CSS question)
But it is.

--
Spartanicus
Nov 1 '06 #2
On Wed, 01 Nov 2006 14:58:05 +0000, Spartanicus
<in*****@invali d.invalidwrote:
>>Can anyone tell us the browsers/versions that exhibit errors
when tables are nested too deeply? And how many levels of
nesting produces errors?

You are confused, using tables for layout causes problems, not errors.
>>(not a tables vs CSS question)

But it is.
So, what you're saying is you don't have an answer to his question. :/

--
Zilbandy - Tucson, Arizona USA <zi*@zilbandyRE MOVETHIS.com>
Dead Suburban's Home Page: http://zilbandy.com/suburb/
PGP Public Key: http://zilbandy.com/pgpkey.htm
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~
Nov 1 '06 #3
Zilbandy <zi*@zilbandyRE MOVETHIS.comwro te:
>>>Can anyone tell us the browsers/versions that exhibit errors
when tables are nested too deeply? And how many levels of
nesting produces errors?

You are confused, using tables for layout causes problems, not errors.
>>>(not a tables vs CSS question)

But it is.

So, what you're saying is you don't have an answer to his question. :/
What you are demonstrating is that you've not understood neither the
question, the answer, or usenet. Oh well.

--
Spartanicus
Nov 1 '06 #4
Spartanicus wrote:
You are confused, using tables for layout causes problems, not errors.
Very, well, can anyone tell us the browsers/versions that exhibit
problems when tables are nested too deeply? And how many levels of
nesting produces these problems?

Nov 1 '06 #5
Gary Peek <my********@myc ompanyname.comw rote:
>You are confused, using tables for layout causes problems, not errors.

Very, well, can anyone tell us the browsers/versions that exhibit
problems when tables are nested too deeply? And how many levels of
nesting produces these problems?
Using a table for layout purposes causes problems in all browsers,
nesting tables makes it worse.

Search the archives of this group and it's stylesheet sister group to
find out what problems (it's been discussed at length at least a few
hundred times before).

--
Spartanicus
Nov 1 '06 #6
VK
Very, well, can anyone tell us the browsers/versions that exhibit
problems when tables are nested too deeply? And how many levels of
nesting produces these problems?
Are you having some problems, expecting some problems or just curious?
One day many years ago - being bored and in a bad mood - I managed to
hang up NN4.5 on 8th level. But as I forced a Flash movie in the
top-right cell of each table that experiment was not clear. :-)

Purely theoretically I wouldn't expect problems at least until 32-bit
overflow which means 4,294,967,295 nested tables. But the chances are
high that long before that it will trig UA's AID (Anti-Idiot Defence
:-). With the modern DOM methods you can easily conduct an "on denial"
test yourselve by dynamically generating and inserting tables onto your
page.

Nov 1 '06 #7
VK wrote:
Are you having some problems, expecting some problems or just curious?
One day many years ago - being bored and in a bad mood - I managed to
hang up NN4.5 on 8th level.
Somewhat out of curiosity, but I was playing around with a
nested table layout, example at:
http://www.garypeek.com/web/tablemadness.htm

I had heard that some older browsers choked on things like this,
but what wondering how deep it had to be to cause this.

I'm not planning on using something this deep, but I don't
have any heartburn using something less complicated.

Do you think I'll piss off anyone if I ask how far down the
text needs to be before the search engines won't find it? :)

Nov 1 '06 #8
On 2006-11-01, VK <sc**********@y ahoo.comwrote:
>Very, well, can anyone tell us the browsers/versions that exhibit
problems when tables are nested too deeply? And how many levels of
nesting produces these problems?

Are you having some problems, expecting some problems or just curious?
One day many years ago - being bored and in a bad mood - I managed to
hang up NN4.5 on 8th level. But as I forced a Flash movie in the
top-right cell of each table that experiment was not clear. :-)

Purely theoretically I wouldn't expect problems at least until 32-bit
overflow which means 4,294,967,295 nested tables.
You could get problems much sooner than that if the table formatter
implementation is recursive (and doesn't have an AID). Eventually you
will run out of stack space.
But the chances are high that long before that it will trig UA's AID
(Anti-Idiot Defence
:-). With the modern DOM methods you can easily conduct an "on denial"
test yourselve by dynamically generating and inserting tables onto your
page.
This would be a good test to try, since a stack overflow is a security
vulnerability.
Nov 1 '06 #9
VK
Somewhat out of curiosity, but I was playing around with a
nested table layout, example at:
http://www.garypeek.com/web/tablemadness.htm
It's appropriately named "tablemadne ss" so I hope you didn't take it as
a design idea of any kind ;-)
I had heard that some older browsers choked on things like this,
but what wondering how deep it had to be to cause this.
Well, at the time of Browser Wars the speed and the reliability in
rendering table cells was one of major promo points of both Netscape
and Microsoft. There were special table test suites consisting of
hundreds colored cells in multi-nested tables and both periodically
organized a la Formula-1 races :-) by watching how quickly their
browser will fill the page if the competitor chocks on it or behind.
The results (if beneficial) were proudly announced on the company site.
Crazy times :-) Anyway I would say that the hardest way to nock out any
of post-war browsers is by using tables. All lesser-effective
algorithms were sorted out and eliminated long time ago.
I'm not planning on using something this deep, but I don't
have any heartburn using something less complicated.
If you decide for some reason to use table layouts, your heartburn has
to start automatically on the third level and should not be remedied by
any pils but only by re-thinking your layout. :-) :-|
The only exception is if you are a QA tester in a browser making
company.
Do you think I'll piss off anyone if I ask how far down the
text needs to be before the search engines won't find it? :)
As down as it's needed to find a long enough continuous text. How long
- that is engine specific, I don't know.

Nov 1 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

44
3879
by: Mariusz Jedrzejewski | last post by:
Hi, I'll be very grateful if somebody can explain me why my Opera 7.23 (runing under linux) doesn't show me inner tables. Using below code I can see only "inner table 1". There is no problem with other browsers (I checked it under Konqueror). Thank you in advance for your help. Regards. /Mariusz <HTML>
8
2793
by: Millissa | last post by:
If someone can help me with examples of or info on how to create an advanced tables for the layout on my site, I would be very grateful! Thanks, M
12
1751
by: C.W | last post by:
Not sure if I should but this is what I have: 3 x 3 table grid. You click on a square and it places a picture in i using Javascript. Fairly simple stuff, each table <td> has a name attribute so it can b referenced by Javascript. My question, can this be converted to CSS and more importantly should even bother or would I be better off leaving it as a table?
7
1907
by: glutinous | last post by:
I've looked at manuals and experimented until my brain's oozing out of my ears, and I still can't figure out what I anticipate will prove to be fairly basic css layout knowledge. I'd be amazed if this was the first (or even if only the 100th) time someone has asked about this sort of situation. So I apologise, not least for the awkwardness of my attempt below to illustrate my ignorance. I could produce a table such as this...
7
4924
by: Wilhelm Kutting | last post by:
Hi again i want to replace the following layouttabel with css/xhtml: ---------------------------------- <table width="640" cellspacing="0"> <tr> <td valign="top">My Title</td> <td valign="top">my text </td> </tr> <tr> <td><img src="spacer.gif" width="140" height="1" /></td>
53
4226
by: Alan Silver | last post by:
Hello, I understand the issue that tables should be used for tabular data and not for layout, but I would like some clarification as to exactly what constitutes tabular data. For example, if I have a form, in which the user is required to fill in various bits of information, then laying out with a table makes it easy. A basic example...
10
9203
by: Luke | last post by:
Hi. I am trying to make correct layout, here is an example of (dynamically generated content via jsp): http://localhost/www/layout.htm Most outer div is positioned absolute (if not then it will not grow when content inside div.body is greater than width of window of user agent), anyway anyone knowlegable can see it in sources...
14
4853
by: Anoop | last post by:
Hi, I am new to this newsgroup and need help in the following questions. 1. I am workin' on a GUI application. Does C# provides Layout Managers the way Java does to design GUI? I know that it can be done using the designer but I intentionally don't want to use that. The one reason is that you cannot change the code generated by the designer. The other could be that you have more free hand and control to design your GUI. 2....
32
2725
by: Simon Dean | last post by:
Duh... Not another one... Hopefully simple though, I hate the way *I* (and it might be a CSS trait) can't intermix fixed width divisional elements with a variable auto expanding div??? The great thing I loved with Tables, was being able to say:
0
8823
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8718
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9343
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9198
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9047
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7973
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5967
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4477
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
2119
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.