编辑你的代码:
<!DOCTYPE html> <html> <head> <style> table, th, td { border-collapse:collapse; border:1px solid black; } th, td { padding:5px; } </style> </head> <body> <table> <caption>Monthly savings</caption> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$50</td> </tr> </table> </body> </html>
查看结果:
phpxuexi.net
- 亲自试一试