跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> table, th, td { border: 1px solid black; } table { width: 100%; } </style> </head> <body> <h2>Таблица на всю ширину</h2> <table> <tr> <th>Имя</th> <th>Фамилия</th> </tr> <tr> <td>Peter</td> <td>Griffin</td> </tr> <tr> <td>Lois</td> <td>Griffin</td> </tr> </table> </body> </html>