,這是我的代碼中的空間:HTML域之間提供單一div標籤
<div class="fieldDate">
<label for="statusEmp">Status of Employee:</label>
<select name="statusEmp" id="statusEmp">
<option value="0">Active</option>
<option value="1">Inactive</option>
</select>
<label for="fromDate">From:</label>
<input type="date" name="fromdate" id="fromDate">
<label for="toDate">To:</label>
<input type="date" name="todate" id="toDate">
<label for="search">Search:</label>
<input type="search" name="search" id="search">
<input type="submit">
</div>
css :
.fieldDate{
float: right;
margin-right: 200px;
}
我想有三個字段之間的空間:現狀,從/到,搜索 我該怎麼做呢? 他們都出現在同一行(這是我想要的)沒有空間之間的領域。
你有沒有試過填充? –
你希望他們所有**在一行**,然後在他們之間有一個**空間** ...正確?? ??因爲你目前的標記把他們放在不同的行! – NoobEditor
究竟@ NoobEditor – Coder17