Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > Redrawing of Internet Explorer Tables vs Div/Span tags

Reply
Thread Tools

Redrawing of Internet Explorer Tables vs Div/Span tags

 
 
sherpaa
Guest
Posts: n/a
 
      06-01-2004
This is a performance issue:

Does anyone have experience with the redrawing of the browser page
when you have updating dynamic data.... does IE redraw slower with
tables or is it better to use Div/Span tags... or a combination....
the CPU is running at 90% for the redraw...
 
Reply With Quote
 
 
 
 
Edwin van der Vaart
Guest
Posts: n/a
 
      06-01-2004
sherpaa wrote:
> This is a performance issue:
>
> Does anyone have experience with the redrawing of the browser page
> when you have updating dynamic data.... does IE redraw slower with
> tables or is it better to use Div/Span tags... or a combination....
> the CPU is running at 90% for the redraw...


IMHO use a combination of css and div/span to design web page. Use only
tables for tabular data e.g calendar, etc. Because the file size of
table designed web pages are much larger then css+div/span web pages, so
that table designed web pages are redraw much slower than div/span web
pages.
--
Edwin van der Vaart
http://www.semi-conductor.nl/ Links to Semiconductors sites
http://www.evandervaart.nl/ Under construction
 
Reply With Quote
 
brucie
Guest
Posts: n/a
 
      06-01-2004
in post: <news:. com>
sherpaa <> said:

> Does anyone have experience with the redrawing of the browser page
> when you have updating dynamic data.... does IE redraw slower with
> tables


generally yes

> or is it better to use Div/Span tags... or a combination....


if it is stuff thats supposed to be in a table then use a table with the
presentational goodies in css.

e.g. no masses of this icky poo stuff:

<td align="left">
<td align="left">
<td align="left">
<td align="left">
<td align="left">

just use: td{text-align:left;}

> the CPU is running at 90% for the redraw...


that must be one hell of a huge table

--
b r u c i e


 
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 Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
All style tags after the first 30 style tags on an HTML page are not applied in Internet Explorer Rob Nicholson ASP .Net 3 05-28-2005 03:11 PM
what's the deal with the span tag and tables tags? developer Javascript 8 05-10-2005 02:06 PM
DataGrid (body only) contained in <span>...</span> tags Dan Bishop ASP .Net Datagrid Control 2 06-07-2004 04:00 PM
Mac OS X Internet Explorer and Dreamweaver 4 Tables Diane Ludin Computer Support 1 03-03-2004 09:35 PM
Emergency - Tables in Internet Explorer Aaron Vano HTML 3 01-18-2004 09:36 PM



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