gpt4 book ai didi

html - 水平对齐标题中的文本

转载 作者:行者123 更新时间:2023-11-28 03:03:38 25 4
gpt4 key购买 nike

谢谢你帮助我。

我试图在标题中垂直和水平对齐我的文本。它只是卡在标题的最底部。

我似乎根本无法从页眉底部移动文本。我的 body 里有 0 个填充物。

非常感谢任何帮助。

I'm trying to align the text in the centre of the header, vertically and horizontally.

HTML

<body>
<div class="background">
<div class="header">
<div class="menu">
<ul class="nav">
<li id="nav-products"><a href="#">Products</a></li>
<li id="nav-contact"><a href="#">Contact</a></li>
<li id="nav-about"><a href="#">About</a></li>
</ul>
<div class="logo">
<img src="images/Logo sketch.png">
</div>
</div>
</body>

CSS

    .nav {
box-sizing: border-box;
text-decoration: none;
font-family: 'Montserrat', sans-serif;
position: relative;

}

.header {
background-color: white;
padding-top: 100px;
background-size: cover;
background-position: center;
position: relative;


}

ul { /*text header*/
list-style: none;
position: absolute;
text-align: center;
border: 2px dashed #f69c55;

}

ul li {
outline: 0 none;
display: inline-block;
padding: 0 2.6em;
margin: 0;

}

a {
color: #111;
font-size: 16px;
font-style: normal;
font-weight: 100;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
color: black;
}
a:hover {
text-decoration: none;
color: black;
}
a:active {
text-decoration: none;
color: black;
}

最佳答案

所以我正在编辑我的答案来解决你的问题:

在你的例子中,如果你需要垂直和水平居中一个绝对定位的元素,你应该使用顶部/底部和左/右偏移。

水平和垂直居中:

ul{
position: absolute;
/* Add top & left offset */
top: 50%;
left: 50%;
/* Transform your element to perfectly center it */
transform: translate(-50%, -50%);
}

水平居中:

ul{
position: absolute;
/* Add left offset */
left: 50%;
/* Transform your element to perfectly center it */
transform: translateX(-50%);
}

垂直居中:

ul{
position: absolute;
/* Add top offset */
top: 50%;
/* Transform your element to perfectly center it */
transform: translateY(-50%);
}

关于html - 水平对齐标题中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46057614/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com