Cell padding (control the white space between cell content and the borders

Cell padding (control the white space between cell content and the borders

<!DOCTYPE html>
<html>
<body>

<h4>Without cellpadding:</h4>
<table border="1">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>

<h4>With cellpadding:</h4>
<table border="1" cellpadding="10">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>

</body>
</html>

Output

Without cellpadding:

First Row
Second Row

With cellpadding:

First Row
Second Row

ليست هناك تعليقات:

إرسال تعليق