Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > ASP.NET 2.0/XHTML 1.1 Table Height Issue

Reply
Thread Tools

ASP.NET 2.0/XHTML 1.1 Table Height Issue

 
 
TheXenocide
Guest
Posts: n/a
 
      10-28-2005
Hello,

First and foremost I'll describe a bit about my problem: I'm trying to
make a site layout using ASP.NET 2.0 in Visual Studio .NET 2005 Beta 2.
The site is a table based layout that is supposed to consume the entire
viewing area (oldschool HTML was <table width="100%" height="100%">).
This is not as easy as it sounds using the forementioned technologies.
I am using some ASP.NET 2.0 controls that specifically depend on the
way browsers render XHTML 1.1, so it's not as easy as just removing the
doctype tag.

I've done a lot of searching around on this topic so these are things
that should be noted, this should also be useful for people who have
experienced similar circumstances:

-The W3C XHTML and CSS 2.1 specifications have deprecated the width and
height attributes of tables and their cells. When using XHTML the
appropriate method of setting the width and height of a table or one of
it's child nodes is to use a css style (ie: <table style="width:100%;
height:100%;">)

-CSS 2.1 has a very strict container sizing rule. When setting the
height of an object to 100% it is only supposed to be as tall as it's
container, this includes html, body, and form tags. In order to get
something to fit the browser window you would need a css style similar
to the following:

html, body {
width: 100%;
height: 100%;
}

With that said, those are all things that I have learned this evening,
and they have helped tremendously. Now that I have implemented those
fixes, however, my table stretches WAY beyond the bottom of the viewing
area when using Internet Explorer. While using Firefox everything is
displayed correctly.

Unfortunately, it's getting very late and I am unable to make a file
that can reproduce this error at this time and I am unable to show the
source of the current site because there is a lot of proprietary
information within it. What I'm hoping is that somebody will recognize
or understand the problem I have run into, or perhaps be able to help
me troubleshoot it.

Screenshots: http://www.netprism.us/layout-issue/

 
Reply With Quote
 
 
 
 
Travis Newbury
Guest
Posts: n/a
 
      10-28-2005
TheXenocide wrote:
> Unfortunately, it's getting very late and I am unable to make a file
> that can reproduce this error at this time and I am unable to show the
> source of the current site because there is a lot of proprietary
> information within it...


Thanks, give us a call when you get a URL you can show us....

--
-=tn=-

 
Reply With Quote
 
 
 
 
kchayka
Guest
Posts: n/a
 
      10-28-2005
TheXenocide wrote:
>
> I am using some ASP.NET 2.0 controls that specifically depend on the
> way browsers render XHTML 1.1


Considering IE doesn't properly support XHTML at all, I find this
statement a bit comical.

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.
 
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
table in table -> 100% height does not work Paul Schmidinger HTML 3 03-24-2011 03:47 PM
Table height issue in IE7 leodippolito@gmail.com HTML 8 02-13-2007 01:50 PM
how to get specific cell height without hard-coding a height value laredotornado@zipmail.com HTML 0 08-19-2006 08:13 PM
ASP.NET 2.0/XHTML 1.1 Table Height Display Issue TheXenocide ASP .Net 3 01-17-2006 06:26 PM
Detecting screen.height for use in <Table Height=> john T Javascript 7 02-19-2004 05:46 AM



Advertisments