html方框代碼 HTML中用代碼做方框/圓圈字怎么做?
HTML中用代碼做方框/圓圈字怎么做?將下面的代碼加入table標(biāo)記中,修改顏色和上下左右邊框的寬度style="border: #333333 border-style: dashed border
HTML中用代碼做方框/圓圈字怎么做?
將下面的代碼加入table標(biāo)記中,修改顏色和上下左右邊框的寬度style="border: #333333 border-style: dashed border-top-width: 1px border-right-width: 1px border-bottom-width: 1px border-left-width: 1px"
怎么用html代碼制作方框?
用table標(biāo)簽,tr表示行,td表示列,下面是一個(gè)2行2列表格的例子。
<tableborder="1">
<tr>
<td>內(nèi)容1</td>
<td>內(nèi)容2</td>
</tr>
<tr>
<td>內(nèi)容3</td>
<td>內(nèi)容4</td>
</tr>
</table>