Advertisement

03.29.2008 at 07:23AM PDT, ID: 23279415
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

Problem formatting row height with XHTML 1.1

Asked by ChristopherEvans in Extensible HTML (XHTML), Hypertext Markup Language (HTML)

Given the following code, I am expecting th see a table, scaled to the full size of the browser window, with 3 rows where the 1st row is 10% height, the second row is 60%, and the 3rd row is 30%...where did I go wrong?


<%@ page language="c#" codebehind="SnapInRuntimeErrors.aspx.cs" autoeventwireup="True"   inherits="EnterpriseASP.IEWebTemplates.SnapInRuntimeErrors" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
    <title>SnapInRuntimeErrors</title>
    <meta name="GENERATOR" content="Microsoft Visual Studio .NET 9.0" />
    <meta name="CODE_LANGUAGE" content="C#" />
    <meta name="vs_defaultClientScript" content="JavaScript" />
    <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
    <style type="text/css">
        *
        {
            padding: 0;
            margin: 0;
        }
        html, body
        {
            height: 100%;
            min-height: 100%;
        }
        #Table1 tr.first
        {
            width: 100%;
            min-width: 100%;
            height: 10%;
            min-height: 10%;
            background-color: #00005a;
            font-size: 12pt;
            color: white;
            font-family: Arial;
        }
        #Table1 tr.second
        {
            width: 100%;
            min-width: 100%;
            height: 60%;
            min-height: 60%;
        }
        #Table1 tr.third
        {
            width: 100%;
            min-width: 100%;
            height: 30%;
            min-height: 30%;
        }
    </style>
</head>
<body >
    <form id="Form1" method="post" runat="server">
    <table id="Table1">
        <tr class="first">
            <td class="first" align="center">
                InstantEnterprise.NET Script Runtime Errors
            </td>
        </tr>
        <tr class="second">
            <td class="second" valign="top">
                <asp:textbox id="TextBox1" runat="server" height="100%" width="100%" min-width = "100%" min-height= "100%" textmode="MultiLine" wrap="False" readonly="True"></asp:textbox>
            </td>
        </tr>
        <tr class="third">
            <td class="third" valign="top">
                <asp:textbox id="TextBox2" runat="server" readonly="True" wrap="False" textmode="MultiLine" min-width = "100%" min-height= "100%" width="100%" height="100%"></asp:textbox>
            </td>
        </tr>
    </table>
    </form>
</body>
</html>Start Free Trial
[+][-]03.29.2008 at 09:01AM PDT, ID: 21237003

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Extensible HTML (XHTML), Hypertext Markup Language (HTML)
Sign Up Now!
Solution Provided By: third
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628