gpt4 book ai didi

javascript - 为什么我的导航按钮或按钮文本不会移到中心?

转载 作者:太空宇宙 更新时间:2023-11-04 10:24:43 25 4
gpt4 key购买 nike

所以我正在尝试为我的一家公司制作一个网站,我的想法是我的主页将有一个巨大的图像,中间有一个按钮(水平和垂直),上面写着“更多!”但是按钮不会居中,按钮内的文本也不会居中,下面我将放置我的 HTML 代码以及我的 CSS 代码。

这是我的 HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Biostone Interactive | Main</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header-image">
<div id="header-button">
<a href="#" id="header-button-text">More!</a>
</div>
</div>
<div id="nav">

</div>
<div id="container">

</div>
</body>
</html>

这是我的 CSS:

* {
padding: 0;
margin: 0;
font-family: Lucida Sans Unicode, Tahoma, Arial;
}

#header-image {
width: 100%;
height: 600px;
background-color: black;
}

#header-button {
width: 100px;
height: 50px;
background-color: red;
border-radius: 4px;
margin: 0 auto;
}

#header-button-text {
text-align: right;
text-decoration: none;
color: white;
}

(请注意此代码不完整,因为我删除了其中的一些代码以尝试修复它)请帮助我并告诉我我做错了什么!谢谢:D

最佳答案

要使容器内的文本居中,请使用 text-align:center;要使容器居中,请使用 margin-left:auto;margin-right:auto;

#header-button {
width: 100px;
height: 50px;
background-color: red;
border-radius: 4px;
margin: 0 auto;
text-align: center;
margin-left: auto;margin-right:auto;
}

#header-button-text {
text-decoration: none;
color: white;
}

关于javascript - 为什么我的导航按钮或按钮文本不会移到中心?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36878358/

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