caption中的“前端三劍客”怎么居中?
<!DOCTYPE html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>學習表格標簽</title>
</head>
<body>
? ??
? ? <h3 >前端三劍客</h3>
? ? <table? border="1" style="text-align:center">
? ? <captiom>前端三劍客</caption>
? ? <tr>
? ? ? ? <th>知識點</th>
? ? ? ? <th>重要程度</th>
? ? ? ? <th>難度</th>
? ? ? ? <th>學習周期</th>
? ? </tr>? ??
? ? ? ? <tr>
? ? ? ? ? ? ?<td>html</td>
? ? ? ? ? ? ?<td>5星</td>
? ? ? ? ? ? ? <td>3星</td>
? ? ? ? ? ? ? <td>7天</td>
? ? ? ? </tr>
? ? ? ? ?<tr>
? ? ? ? ? ? ? <td>css</td>
? ? ? ? ? ? ? ?<td>5星</td>
? ? ? ? ? ? ? ? <td>4星</td>
? ? ? ? ? ? ? ? <td>10天</td>
? ? ? ? ?</tr>
? ? ? ? ? <tr>
? ? ? ? ? ? ? ?<td>js</td>
? ? ? ? ? ? ? ?<td>5星</td>
? ? ? ? ? ? ? ? <td>5星</td>
? ? ? ? ? ? ? ? <td>20天</td>
? ? ? ? ? </tr>
? ? ? ??
? ? </table>
? ??
? ??
? ??
</body>
</html>
2021-06-07
兄弟,你的caption寫成了captiom,caption在table里面是自動居中的。
2021-06-19
?,非常感謝!我的粗心大意啊!