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.
我有以下内容负责显示页脚和页面末尾:-
<footer> <p> © @DateTime.Now.Year - My Group </p> </footer>
目前页脚显示在页面的左侧,但我想强制它位于页面的中心。谁能建议我如何做到这一点?
只需将其添加到您的 CSS
footer { text-align:center; }
如果您想在页脚中居中文本,您必须这样做:
footer p{ text-align:center; }
如果要使页脚容器居中,则必须为此定义一个 with,然后使用边距将其居中。
footer{ width:900px; margin-left:auto; margin-right:auto; }