1.<table>定義整個(gè)表格,所有都是雙標(biāo)簽。table里面設(shè)置border屬性,="邊框大小"
2.caption定義表格標(biāo)題。
3.tr是行內(nèi)容,td是列內(nèi)容,tr可以看做一個(gè)大盒子里面填td的小盒子。
4.th的地位和td一樣,但th是標(biāo)題,會(huì)粗一點(diǎn)
2.caption定義表格標(biāo)題。
3.tr是行內(nèi)容,td是列內(nèi)容,tr可以看做一個(gè)大盒子里面填td的小盒子。
4.th的地位和td一樣,但th是標(biāo)題,會(huì)粗一點(diǎn)
網(wǎng)址要用英文雙引號(hào)引出,target屬性也要用英文雙引號(hào)引出,_self是在當(dāng)前頁面打開 _blank是在新窗口打開
2020-08-31
ul li按點(diǎn)排列無序
ol li按數(shù)字排列有序
dl dt無點(diǎn)無數(shù)字空排列
ol li按數(shù)字排列有序
dl dt無點(diǎn)無數(shù)字空排列
這個(gè)需要用到什么軟件么?還有這些現(xiàn)成的代碼是自動(dòng)就有的還是需要我們自己打出來的
2020-08-24
我感覺正方形的圓角效果值等于元素邊長(zhǎng)時(shí),更圓了。。。
2020-08-21
<form action="save.php" method="post">
<label>性別:</label>
<label>男</label>
<input type="radio" value="1" name="gender" />
<label>女</label>
<input type="radio" value="2" name="gender" />
</form>
<label>性別:</label>
<label>男</label>
<input type="radio" value="1" name="gender" />
<label>女</label>
<input type="radio" value="2" name="gender" />
</form>
2020-08-16
<textarea cols="50" rows="10" placeholder="請(qǐng)輸入內(nèi)容"></textarea>
<h3>成績(jī)表</h1>
<hr/>
<table border=1px dashed #000;>
<thead>
<tr>
<th>科目</th>
<th>分?jǐn)?shù)</th>
</tr>
</thead>
<tbody>
<tr>
<td>語文</td>
<td>99</td>
</tr>
<tr>
<td>數(shù)學(xué)</td>
<td>60</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>總分</td>
<td>159</td>
</tr>
</tfoot>
</table>
<hr/>
<table border=1px dashed #000;>
<thead>
<tr>
<th>科目</th>
<th>分?jǐn)?shù)</th>
</tr>
</thead>
<tbody>
<tr>
<td>語文</td>
<td>99</td>
</tr>
<tr>
<td>數(shù)學(xué)</td>
<td>60</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>總分</td>
<td>159</td>
</tr>
</tfoot>
</table>
2020-08-16
<link href="style.css" rel="stylesheet" type="text/css"/>
我認(rèn)為這個(gè)的意思差不多就是新建一個(gè)設(shè)置風(fēng)格的文件,新建一個(gè)以style命名的css文件,在這里設(shè)置文本的顏色、字體大小、粗細(xì)等這之類的。
我認(rèn)為這個(gè)的意思差不多就是新建一個(gè)設(shè)置風(fēng)格的文件,新建一個(gè)以style命名的css文件,在這里設(shè)置文本的顏色、字體大小、粗細(xì)等這之類的。
2020-08-12
這樣就可以解釋出來它的那種意思了,獨(dú)立一行,還可以設(shè)置顏色和大小等
a {
display:block;
color:green;
font-size:20px;
}
后面加<a></a>
a {
display:block;
color:green;
font-size:20px;
}
后面加<a></a>
2020-08-07
span {
text-decoration:line-through;
}
text-decoration:line-through;
}
2020-08-06
<ul>: unordered list, 無序列表
<li>: list item, 列表項(xiàng)
<ol>: ordered list, 有序列表
可以對(duì)照英文的全稱進(jìn)行記憶,會(huì)簡(jiǎn)單一些。
https://www.cnblogs.com/lixin-link/p/11133879.html
<li>: list item, 列表項(xiàng)
<ol>: ordered list, 有序列表
可以對(duì)照英文的全稱進(jìn)行記憶,會(huì)簡(jiǎn)單一些。
https://www.cnblogs.com/lixin-link/p/11133879.html
2020-08-05