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.
我想从我的网站上执行此操作:http ://project.jazzassite.tk 并能够将内容放入我可以居中或对它们做任何我想做的事情的 div 中。唯一的问题是,如果我浮动它,它就不起作用,如果我使用 position:relative 它们会产生楼梯效果。
我希望我能够纯粹用 CSS 来做到这一点,而不是使用任何表格等。
任何帮助表示赞赏,爵士乐
你想将navigate包含所有 6 个孩子的 div 居中吗?如果是这样,这应该工作:
navigate
#navigate { position: absolute; top: 50%; left: 50%; margin-left: -540px; margin-top: -15px; }
margin-left 是内容宽度的一半,然后设为负数。margin-right 是内容高度的一半,然后变为负数。这将使您的对象垂直和水平居中。这是你要找的还是我错过了重点?