我的问题是我不能将标签与水平输入和垂直输入内联
我希望有这样的输出:
但我在这上面使用了一张桌子。现在我不想使用表格,但我不知道该怎么做。我试着做,但这是非常错误的。
这是我的CSS
article#login, article#register {
padding:5px 0 5px;
border:1px solid black;
width:200px;
margin:0 auto;
}
这是我的html
<section id="siteContent" class="tabs">
<h1>Section</h1>
<article id="login">
<h1>Login</h1>
<label>E-mail:</label>
<input type="email">
<label>Password:</label>
<input type="password">
<input type="button" value="Login">
</article>
<article id="register">
<h1>Register</h1>
<label>Name:</label>
<input type="text">
<label>E-mail:</label>
<input type="email">
<label>Password:</label>
<input type="password">
<label>Re-type:</label>
<input type="password">
</article>
</section>