課程
/前端開發(fā)
/HTML/CSS
/初識(shí)HTML(5)+CSS(3)-升級(jí)版
這節(jié)不用答題的?直接提交就能拿分?手滑。。。
2019-06-28
源自:初識(shí)HTML(5)+CSS(3)-升級(jí)版 6-8
正在回答
有很多章節(jié)都是看的
精慕門3409412 提問(wèn)者
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>form中的lable標(biāo)簽</title>
</head>
<body>
<form>
? ?<label for="sport">你對(duì)什么運(yùn)動(dòng)感興趣:</label>
? <br />
? <label for="run">慢跑</label>
? <input type="radio" id="run" checked="checked"/>
? <label for="mout">登山</label>
? <input type="radio" id="mout" />
? <label for="bask">籃球</label>
? <input type="radio" id="bask" />
??
</form>
</body>
</html>
慕后端2434717
舉報(bào)
HTML(5)+CSS(3)基礎(chǔ)教程8小時(shí)帶領(lǐng)大家步步深入學(xué)習(xí)標(biāo)簽用法和意義
12 回答label 標(biāo)簽
1 回答label標(biāo)簽
2 回答label標(biāo)簽
3 回答label標(biāo)簽
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2019-06-28
有很多章節(jié)都是看的
2019-06-28
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>form中的lable標(biāo)簽</title>
</head>
<body>
<form>
? ?<label for="sport">你對(duì)什么運(yùn)動(dòng)感興趣:</label>
? <br />
? <label for="run">慢跑</label>
? <input type="radio" id="run" checked="checked"/>
? <br />
? <label for="mout">登山</label>
? <input type="radio" id="mout" />
? <br />
? <label for="bask">籃球</label>
? <input type="radio" id="bask" />
??
</form>
</body>
</html>