我正在複製一個頁面,並且想知道是否需要縮進form
標記,如果它嵌套在div
標記中。例如正確嵌套HTML中的表單標籤
<div class="signup-form">
<form method="post">
<input type="text" value="First Name">
<input type="text" value="Last Name">
</form>
或者我不寫縮進就寫。例如
<div class="signup-form">
<form method="post">
<input type="text" value="First Name">
<input type="text" value="Last Name">
</form>
在此先感謝您。
您使用的是什麼IDE? –
我正在使用Sublime2。編寫HTML5代碼。 – eagercoder