开发者

How to do Alignment setting of table within a table?

开发者 https://www.devze.com 2023-04-05 13:00 出处:网络
I have to create a simple table within a table. i am using following html code for making as simple page. please copy and paste it to file for understand the problem correctly.

I have to create a simple table within a table. i am using following html code for making as simple page. please copy and paste it to file for understand the problem correctly.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<BODY>
<table border=1>
  <tr>    
    <td>
      <table>
        <tr>
          <td>thid entry should be on top</td>
        </tr>
        <tr>
          <td>why this comes in middle</td>
        </tr>
      </table>
    </td>
    <td>
      <table>
        <tr>
          <td>entry1</td>
        </tr>
        <tr>
          <td>entry2</td>
        </tr>
        <tr>
          <td>entry3</td>
        </tr>
        <tr>
          <td>entry4</td>
        </tr>
        <tr>
          <td>entry5</td>
        </tr>
      </table>
    </td>
  </tr>
</table>

</BODY>
</HTML>

The main problem is in my right side part of table I have some searched information, and left side s开发者_StackOverflowome refine search panel. so when my page comes, my refine search window comes exact middle. i want my left part of table is to aligned on table, where my start.

Please help me to resolve this.


valign="top" in the correct column would be a simple solution to your prob.

like:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
    <BODY>

        <table border=1>
            <tr>   
                <td valign="top">
                    <table>
                        <tr>
                            <td>thid entry should be on top</td>
                        </tr>
                        <tr>
                            <td>why this comes in middle</td>
                        </tr>
                    </table>
                </td>
                <td>
                    <table>
                        <tr>
                            <td>entry1</td>
                        </tr>
                        <tr>
                            <td>entry2</td>
                        </tr>
                        <tr>
                            <td>entry3</td>
                        </tr>
                        <tr>
                            <td>entry4</td>
                        </tr>
                        <tr>
                            <td>entry5</td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>

    </BODY>
</HTML>

edit: style="vertical-align:top;" if you use css

0

精彩评论

暂无评论...
验证码 换一张
取 消