李振良K8s CKA+CKS雙證實(shí)戰(zhàn)集訓(xùn)營
input
和label
的使用
<label for= 'username'>用戶名</label><input type= 'text' id= 'username' name= 'username' placeholder= '請(qǐng)輸入用戶名' >
最佳實(shí)踐
<label>用戶名<input type= 'text' name= 'username' placeholder= '請(qǐng)輸入用戶名'>
button
表示一個(gè)可點(diǎn)擊的按鈕。能夠在表單,或者 HTML 文檔的任一需要按鈕的位置。
說明:input
和button
的區(qū)別為input
沒有子元素,而button
可以有子元素。
標(biāo)簽: