如何将标题文本置于 html 中导航菜单的中间

问题描述 投票:0回答:5

我想知道如何将我编写的标题文本居中于我创建的导航菜单的中心,文本已经居中,但它位于导航菜单的顶部居中,而不是中间,这就是我需要的.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Home</title>
</head>
<style>
    body {margin:0;}
    .Header {
        z-index: 100;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #000000;
        height: 70px;
    }

    @media screen and (max-width:680px) {
        .Header.responsive {position: relative;}
        .Header.responsive li.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

    }
    @media (max-width: 960px){
    .Header .headerLogo{
        display: inline-block;
        width: 86px;
        height: 15px;
        margin-top: 17px;
        margin-left: 6px;
    }
    }
</style>
</head>
<body>

<div class="Header" id="myHeader">
    <a class = "headerLogo">
    <header><center><i><font size = "6" face = "verdana" color = "white">Lunation Boards</font></i></center></header>
    </a>
</div>
</body>
</html>
html css center
5个回答
12
投票

您有三个选择,其中前两个选项更可靠

第一个选项使用弹性框使项目水平和垂直居中。

div {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: blue;
}

text {
  background: orange;
}
<div>
   <text>Centered horizontally and vertically</text>
</div>

第二个选项不使用 flex-box,而是对父元素使用相对位置,对子元素使用绝对位置,并且

transform: translate(X, Y)
也对子元素使用。

div {
  width: 100%;
  height: 200px;
  position: relative;
  background: blue;
}

text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: orange;
}
<div>
   <text>Centered horizontally and vertically</text>
</div>

第三个选项,为了使元素垂直居中,使用等于父元素的

line-height
height

div {
  width: 100%;
  height: 200px;
  position: relative;
  background: blue;
}

text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  line-height: 200px;
  background: orange;
}
<div>
   <text>Centered horizontally and vertically</text>
</div>


2
投票

这应该可以解决问题。

要清理 HTML,请像这样进行设置并删除

<center>
<font>
等标签:

<div class="Header" id="myHeader">
    <a class = "headerLogo">
        <h1>Lunation Boards</h1>
    </a>
</div>

您可以使用

display: flex
将标题中的内容居中:

.Header {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    height: 70px;
    display: flex;
    justify-content: center;
}

a {
  width: 100%;
}

h1 {
  margin: 0;
  color: #fff;
}

@media (max-width: 960px){
.Header .headerLogo {
    display: inline-block;
    width: 86px;
    height: 15px;
    margin-left: 6px;
}
}

以下是更改的完整内容:

https://jsfiddle.net/xqamjrvr/


0
投票
  1. 我认为你不需要在标题中放置
    <center>
    标签,将其与 css 对齐。
  2. 而且当您使用自己的类时,您应该删除
    <header>
    标签。
  3. 您在标题中使用 100% 宽度,因此不应使用 left:0;
  4. 您需要在 headerlogo 类中使用position:relative,边距:0 auto;

到目前为止我已经使用了 html 和 css,但我认为这会有所帮助

这是示例代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
</head>
<style>
body {margin:0;}
.Header {
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000;
    height: 70px;
}

@media screen and (max-width:680px) {
    .Header.responsive {position: relative;}
    .Header.responsive li.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

}
@media (max-width: 960px){
.Header .headerLogo{
    position: relative;
    display: inline-block;
    width: 86px;
    height: 15px;
    margin: 0 auto;
}
}
</style>
</head>
<body>

<div class="Header" id="myHeader">
<a class = "headerLogo">
<i><font size = "6" face = "verdana" color = "white">Lunation Boards</font></i>
</a>
</div>
</body>
</html>

0
投票

var text = new createjs.Text(

“和你在一起的时间越长\

我越爱你”,

“粗体 24px Arial”,“#fff”);

text.textAlign = "居中";

文本.x = w / 2;

text.yh/2 文本。

getMeasuredLineHeight();

stage.addChild(文本);


-1
投票

尝试(这里是您的代码)。将 : (此处是您的代码) 替换为您想要的中心内容。

© www.soinside.com 2019 - 2024. All rights reserved.