gpt4 book ai didi

html - 在不拉伸(stretch)页面的情况下将我的标题链接居中

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

如果不拉伸(stretch)页面,我似乎无法将我的链接 h1 居中。我知道如何使用 text-align: center 将它居中,它居中,链接会拉伸(stretch)整个页面的宽度。

我可以在不拉伸(stretch)的情况下将链接居中吗?

.navigation {
padding-top: 70px;
padding-bottom: 70px;
position: relative;
text-transform: uppercase;

}

.brand-text {
font-family: 'Permanent Marker', cursive;
font-size: 50px;
color: black;
-webkit-transition: color 1000ms ease;
text-align: center;
margin-bottom: 20px;
margin-left: 0;
margin-right: 0;
margin-top: 0;
padding: 0;
display: block;
}


.brand-text:hover {
color: grey;

}

.nav-brand {
text-decoration:none;
}

.nav-menu {
text-align: center;
}

.nav-link {
padding-top: 7px;
padding-bottom: 7px;
margin-right: 20px;
margin-left: 20px;
text-decoration: none;
color: grey;
font-family: 'Raleway', sans-serif;
-webkit-transition: color 700ms ease;
position: relative;
}

.nav-link:hover {
color: black;
}

.current {
color: black;
}

.current:hover {
color:
}
<!DOCTYPE html>
<html>
<head>
<title>Josh Corbett</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">

</head>
<body>
<div class="navigation">
<a class="nav-brand" href="#"><h1 class="brand-text">Title</h1></a>
<div class="container">
<nav class="nav-menu" role="navigation">
<a class="nav-link current" href="#">Portfolio</a>
<a class="nav-link" href="#">About</a>
<a class="nav-link" href="#">Contact</a>
<a class="nav-link" href="#">Blog</a>
</nav>
</div>
</div>
</body>

最佳答案

你可以添加 overflow: hidden;在您的品牌文字中。你也可以尝试做

#LinkText {
width: 100%;
height: auto;
overflow: hidden;
}

并将 LinkText 的 id 赋予 H1 标签。

关于html - 在不拉伸(stretch)页面的情况下将我的标题链接居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40143051/

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