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.
印刷時にテーブルを中央に配置する必要があるページがあります。しかし、マージンの自動テーブルを配置すると、配置が正しくなくなり、左よりも右にずれます。
赤: 本体です
緑: テーブルです
黒: TD
table { page-break-after:always !important; display:table !important; margin:auto !important; }
「margin:auto;」の原因がわかりません 動作しませんが、 width と margin を使用して、正常に印刷されるようにすることができます。
table { page-break-after:always !important; display:table !important; width:80%; margin-left:10%; }