Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<table width="1168px" height="315px" bgcolor="#eeeeee" style="position:absolute; top:19px; margin-left:96px; margin-right:96px;" >
テーブルは 96 ピクセルで左揃えになりますが、右側の端まで拡張されます。Web ページ全体の幅を指定していません。私は何を間違えましたか?ありがとう。
これらをスタイルから削除します。
position:absolute; top:19px; margin-left:96px; margin-right:96px;
そして、次のように変更します。
width: 75%; margin: auto;
また、属性を削除しますwidth。
width
この問題は WIDTH に起因しています。これを変更すると、目的の結果が得られるはずです。固定値ではなく % にすることをお勧めします。