1. ホーム
  2. css

[解決済み] How to align a <div> to the middle (horizontally/width) of the page [duplicate]

2022-03-22 14:25:54

Question

I have a div tag with width set to 800 pixels . ブラウザの幅が 800ピクセル を伸ばさないようにする必要があります。 div しかし、ページの真ん中に持ってくる必要があります。

解決方法は?

<body>
    <div style="width:800px; margin:0 auto;">
        centered content
    </div>
</body>