テーブル中央寄せ
html
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="style.css"> <title>タイトル</title> <meta name="viewport" content="width=device-width,initial-scale=1.0"> </head> <body> <div class="test1"> <table border="1"> <tr><td>りんご</td><td>みかん</td><</tr> <tr><td>りんご</td><td>みかん</td></tr> </table> </div> </body> </html>
css
.test1 { max-inline-size: max-content; margin-inline: auto; }
りんご | みかん |
りんご | みかん |