如何对齐< D​​IV>到页面的中间(水平/宽度)宽度、水平、页面、LT

2023-09-11 23:32:05 作者:患了孤独症

我和宽度设置为800px div标签。当浏览器宽度大于800px,它不应该伸展股利但应该把它带到所述页的中间

解决方案

 <身体GT;
    < D​​IV的风格=宽度:800px;保证金:0汽车;>
        中心内容
    < / DIV>
< /身体GT;
 

I have a div tag with width set to 800px. When the browser width is greater than 800px, it shouldn't stretch the div but it should bring it to the middle of the page.

解决方案

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