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>s 在页脚内居中,并且我希望块图像链接float: left位于页脚的默认位置。浮动块图像将我居中的文本推向右侧。
<footer>
<p>
float: left
<footer>无论块图像链接在哪里,如何使我的文本居中在中?
当我问这个问题时想通了...
footer{ position: relative; }
#blocklink { display: inline-block; position: absolute; left: 0; }
文本将保持居中,text-align: center;块元素将位于左上角。
text-align: center;