-1

我有这个 HTML 注册:

<form class="registerForm" id="registerForm" action="./index_public.php?page=pilot_insert" method="post" enctype="multipart/form-data">
    <table>
        <tr>
            <td><span>Name</span>
            </td>
            <td><span id="sprytextfield1">
                          <label>
                            <input type="text" name="name" id="name" tabindex="1" />
                          </label>
                          <span class="textfieldRequiredMsg">*Required</span></span>
            </td>
        </tr>
        <tr>
            <td class="style1">E-mail</td>
            <td><span id="sprytextfield6">
                        <label>
                        <input type="text" name="email" id="email" tabindex="8"/>
                        </label>
                        <span class="textfieldRequiredMsg">*Required</span><span class="textfieldInvalidFormatMsg">Formato no válido.</span></span>
            </td>
        </tr>
    </table>
    <input class="btn" value=Apply name=apply type="submit" />
</form>

我想在注册表旁边放一张图片。我试过了,但我只能把它放在注册表下面,不能放在旁边。帮助!!!

4

5 回答 5

1

将特定宽度应用于您的表单并float:left用于float:right图像

于 2013-07-02T18:12:34.640 回答
0

您可以尝试应用“display:inline-block;” 形式和图像。

例如:

<form style="display:inline-block;"></form>
<img src="someimage" style="display:inline-block;"/>

这是您的表单和图像并排的小提琴示例:http: //jsfiddle.net/VE66w/

于 2013-07-02T18:20:30.507 回答
0

将表单和图像放入 div 并使用“float”css 属性。

 <div style="float:right">
<img src="http://assetprotectionsecured.com/wp-content/uploads/2010/12/alert_png.png">     </div>

这是工作演示:http: //jsfiddle.net/7uUK8/1/

于 2013-07-02T18:15:27.653 回答
0

在 html 中使用divorspan制作两个容器,body一个用于表单,另一个用于图像。之后根据应用css。

于 2013-07-02T18:28:06.333 回答
0

只需删除:“Formato no válido”。

  <div style="float:right"><img src="http://assetprotectionsecured.com/wp-content/uploads/2010/12/alert_png.png"></div>

如果需要,请在注册字段旁边的图像...

于 2013-07-02T18:34:21.283 回答