0

我有一张表,我将尝试以这种方式表示:

-------------------------
| L1 |       R1         | 
------------------------  
| L2 |       R2         |
-------------------------

我的代码如下:

<div data-role="content" id="div1" align="top" style="padding:3 !important;" >  
        <table border="0" align="CENTER" cellspacing="0" width="100%" style="vertical-    align: text-bottom;" >
        <tr>
        <td></td>
        <td>
            <div id="question1" class="question">
                <input type="text" id="question" />
            <Style>
                #question{
                  font:5px;
                  font-family:verdana;
                }
            </style>        
            </div>
        </td></tr><tr>
        <td width="50"><img id="img2" width="40" height="36" style="float:right; margin-top: 0px;" ></td>
        <td style="text-align:center;">
            <div class="ui-grid-b" >
                <div class="ui-block-a"><button id="button1" type="submit" data-theme="b" style="font-size:0.8em;"></button></div>
                <div class="ui-block-b"><button id="button2" type="submit" data-theme="b" style="font-size:0.8em;"></button></div>   
                <div class="ui-block-c"><button id="button3" type="submit" data-theme="b" style="font-size:0.8em;"></button></div>  
            </div>
        </td>
        </tr>
        </table>
</div>

所以基本上我想做的是,我的表中没有 L1 部分。R1 有数据,R2 也有。L2中有一张图片。我想要做的是删除 L1 和 L2 之间的划分,并且 L2 中的图像应该集中在桌子上,而不仅仅是 L2 的 TD。我怎么做?

我还有另一个问题是,在下面的代码行中:

<input type="text" id="question" />

当值被填充并且当我在移动设备中查看它时,文本有时会转到下一行。我认为 textarea 是唯一具有多行的 HTML 标签。不知道为什么这里的文字是多行的,我该如何避免?

4

1 回答 1

1

看到这一点就在下面<table border="0"....

<tr><td></td>

将其更改为

 <tr>
   <td width="50" rowspan="2">
     <img id="img2" width="40" height="36" style="float:right; margin-top: 0px;">
   </td>

然后摆脱<td></td>最初持有该形象的人。

于 2013-04-16T03:37:20.023 回答