我目前正在创建一个网站,并使用非常漂亮的雷克雅未克主题。首先,我创建了一个儿童主题。现在,我想对儿童主题进行一些修改。 在此模板中,可以对页脚进行个性化设置,但不能更改其位置。我提供与页面检查器一起检查它的位置,但是什么也没找到...
我提供了修改我的style.css子主题的功能,为页脚添加了相对位置,但它没有任何改变。.
您对如何使页脚文本居中有任何想法吗?
非常感谢:)
杰里
答案 0 :(得分:1)
答案 1 :(得分:0)
这是如果您尝试居中<div>
,<img>
等居中的情况。
W3Schools list of inline and block elements
您可能要考虑使用margin: 0 auto;
.centered {
margin: 0 auto;
/*margin:0 auto: this gives the element a 0 top and bottom margin, and automatically sets the left and right to the maximum it can be*/
width:100px;
/*You need to specify a width for this to work*/
}
<div>
<p class="centered">
Hello World
</p>
</div>
对于内联元素,例如<span>
,<img>
或文本元素
W3Schools list of inline and block elements
为此,您只需使用text-align:center;
.centered {
text-align: center;
/*Just tell the text to center itself in the element*/
}
<p class="centered">
Hello World!
</p>
W3Schools list of inline and block elements
CSS Tricks: Centering in CSS