I have found that using the DIV tag is simpler and uses far less HTML code than TABLEs. Does the DIV tag trip up the Google Spider?
closed
9:00 pm on Jan 5, 2004 (gmt 0)
To answer your question, no.
synergy
10:42 pm on Jan 5, 2004 (gmt 0)
Nope. My entire site is made out of divs. I love going tableless :D
g1smd
11:07 pm on Jan 12, 2004 (gmt 0)
Reducing the amount of HTML code (for the same amount of content) on a page will probably make it easier for the bots to spider it. Just make sure that there are no typos in the HTML code - especially unclosed tags, and nesting errors.
mep00
12:23 am on Jan 13, 2004 (gmt 0)
<div>'s have a major advantage over tables from a SEO standpoint. Tables are read left-to-right, top-to-bottom, period. <div>'s, on the other hand, can be displayed in a different order than they appear in the code.
grahamstewart
12:29 am on Jan 13, 2004 (gmt 0)
Definitely not. Using strict html and CSS helps me reduce my code-to-text ratio and consequently increase my rankings.
Just make sure your HTML validates [validator.w3.org] (or at least comes close to validating) to avoid confusing spiders.
Prophet
12:34 am on Jan 13, 2004 (gmt 0)
There are some naughty div's around.
g1smd
12:39 am on Jan 13, 2004 (gmt 0)
Yeah, like keyword stuffed ones, that are absolutely positioned some place down the road in another building (or at least waaaay off the edge of the current users screen).
Google will eventually catch up with that and apply some sort of scorched-earth policy to all of those sites.
grahamstewart
1:34 am on Jan 13, 2004 (gmt 0)
Yeah, but you could equally apply that technique with a <table> or a <h1> or a <p> (and I'm sure many do). Point is that Google won't punish you soley for using a div.