MCQOPTIONS
Saved Bookmarks
| 1. |
<!DOCTYPE html><html><body><table border="2"><tr><th>Name</th><th>Phone no</th></tr><tr><td ______________>John</td><td>9898989898</td></tr><tr><td>9876543210</td></tr></body></html>Name Phone noJohn 9898989898 98765432106.In order to add space of 20px between cell content and its border of a table in html, which one of the following option is appropriate? |
| A. | th,td{ padding: 20px;} |
| B. | table{ margin:20px; } |
| C. | table{ border : 20px;} |
| D. | table{ padding: 20px; } |
| Answer» B. table{ margin:20px; } | |