我的問題是,我不能內聯與輸入水平的標籤和垂直我怎樣才能內聯標籤與輸入水平和輸入垂直
我希望有一個這樣的輸出輸入:
但我在這個上使用了一個表格。現在我想不使用表格,但我不知道如何去做。我嘗試做,但它是非常錯誤的。
這裏是我的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>
我只是用'div's和「內聯塊」跨度。 –