-4

我想更改我网站的登录页面。

我需要在登录页面上添加一个注册表单,以便该页面有两种形式:一种用于登录,另一种用于注册。

我不知道如何水平设置这些表格。谁能解释如何做到这一点?

4

3 回答 3

2

这应该让您了解您需要做什么:

HTML:

<div class="container">
    <div class="form form1">Form 1</div>
    <div class="form form2">Form 2</div>
</div>

CSS:

.container {
    width:100%;
    overflow:auto;
}

.form {
    width:50%;
    height:100px;
    float:left;
}

.form1 {
    background:#ccc;
}

.form2 {
    background:#999;
}

现场演示:jsFiddle

于 2012-08-03T09:51:46.733 回答
1

使用float:left

HTML:

<form>
    <input type="text" />
    <input type="text" />
    <input type="submit" />
</form>
<form>
    <input type="text" />
    <input type="text" />
    <input type="submit" />
</form>

CSS:

input { display: block; }
form { float: left; padding-left: 15px; }

现场演示:Tinkerbin

于 2012-08-03T09:52:21.553 回答
0

您可以将这些表格放入div中吗?

HTML:

<div class="left">LEFT FORM</div>
<div class="right">RIGHT FORM</div>
<div class="clear"></div>

CSS:

.left { 
    float:left;
    width:300px;
}
.right {
    width:300px;
}
.clear {
    clear:left;
}
于 2012-08-03T09:55:31.447 回答