Cellpadding
Cellpadding is allows to have some space between of each cell and it is borders(or inner edges)
Example
Cellpadding is allows to have some space between of each cell and it is borders(or inner edges)
Example
<html> <head> <title> HTML cellpadding </title> </head> <body> <table border="1" cellpadding="8"> <tr> <td>one</td> <td>second</td> </tr> <tr> <td>Three</td> <td>four</td> </tr> </table></body> </html> |
Output
one | second |
Three | four |
0 comments:
Post a Comment