在<p>標(biāo)簽里面也可以加入網(wǎng)頁(yè)地址信息,意思是說(shuō)<address>標(biāo)簽和<p>標(biāo)簽是一樣的
2020-03-18
p.span.worning{color:red;}這樣寫(xiě)是錯(cuò)誤的,類(lèi)應(yīng)該放在前面
.worning p span{color:red;}
.worning p span{color:red;}
2020-03-13
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>address標(biāo)簽介紹</title>
</head>
<body>
<h2>慕課網(wǎng)</h2>
<p>超酷的互聯(lián)網(wǎng)、IT技術(shù)免費(fèi)學(xué)習(xí)平臺(tái),創(chuàng)新的網(wǎng)絡(luò)一站式學(xué)習(xí)、實(shí)踐體驗(yàn);服務(wù)及時(shí)貼心,內(nèi)容專(zhuān)業(yè)、有趣易學(xué)。專(zhuān)注服務(wù)互聯(lián)網(wǎng)工程師快速成為技術(shù)高手!</p>公司地址:<address>北京市西城區(qū)德外大街10號(hào)</address>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>address標(biāo)簽介紹</title>
</head>
<body>
<h2>慕課網(wǎng)</h2>
<p>超酷的互聯(lián)網(wǎng)、IT技術(shù)免費(fèi)學(xué)習(xí)平臺(tái),創(chuàng)新的網(wǎng)絡(luò)一站式學(xué)習(xí)、實(shí)踐體驗(yàn);服務(wù)及時(shí)貼心,內(nèi)容專(zhuān)業(yè)、有趣易學(xué)。專(zhuān)注服務(wù)互聯(lián)網(wǎng)工程師快速成為技術(shù)高手!</p>公司地址:<address>北京市西城區(qū)德外大街10號(hào)</address>
</body>
</html>
2020-03-12
想在網(wǎng)頁(yè)上展示上述表格效果可以使用以下代碼:
創(chuàng)建表格的四個(gè)元素:
table、tbody、tr、th、td
1、<table>…</table>:整個(gè)表格以<table>標(biāo)記開(kāi)始、</table>標(biāo)記結(jié)束。
2、<tbody>…</tbody>:如果不加<thead><tbody><tfooter> , table表格加載完后才顯示。加上這些表格結(jié)構(gòu), tbody包含行的內(nèi)容下載完優(yōu)先顯示,不必等待表格結(jié)束后在顯示
創(chuàng)建表格的四個(gè)元素:
table、tbody、tr、th、td
1、<table>…</table>:整個(gè)表格以<table>標(biāo)記開(kāi)始、</table>標(biāo)記結(jié)束。
2、<tbody>…</tbody>:如果不加<thead><tbody><tfooter> , table表格加載完后才顯示。加上這些表格結(jié)構(gòu), tbody包含行的內(nèi)容下載完優(yōu)先顯示,不必等待表格結(jié)束后在顯示
2020-03-09
你對(duì)什么運(yùn)動(dòng)感興趣:<br />
<label for="slow run">慢跑</label>
<input type="checkbox" name="sport" id="slow run" />
<br />
<label for="climb">登山</label>
<input type="checkbox" name="sport" id="climb" />
<br />
<label for="basket">籃球</label>
<input type="checkbox" name="sport" id="basket" />
是這樣嗎
<label for="slow run">慢跑</label>
<input type="checkbox" name="sport" id="slow run" />
<br />
<label for="climb">登山</label>
<input type="checkbox" name="sport" id="climb" />
<br />
<label for="basket">籃球</label>
<input type="checkbox" name="sport" id="basket" />
是這樣嗎
2020-03-07