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.
大家,早安。我在网站上环顾四周,并尝试了这里一些线程的建议,我已经让我的 div 居中,但 div 的左边缘居中,我希望 div 中的内容居中,然后 div 本身居中。
这就是我的意思。
CSS中是否可能隐藏了一个边距(有点乱)?
居中div的宽度必须大于其内容。ul的宽度为 515px,所以我将居中的div 宽度更改为 600px:
#centered { position: relative; width: 600px; /* This width must be greater than the content width. */ margin: 0 auto; text-align: left; }