gpt4 book ai didi

html - 固定标题向标题添加空间

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

好的,所以我的页眉具有我想要的大小和设计,并决定将其设为固定页眉。但每当我做 position: fixed;它在标题的底部添加了一些填充。我似乎不知道如何摆脱它。

HTML:

<!DOCTYPE html>
<html>
<head>
<title>FatHead | Blog</title>
<link href='http://fonts.googleapis.com/css?family=Dosis:400,500,600,700,800|Muli:400,300italic,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<div class="header">
<div class="logo">
<h1 id="logo-large">FAT</h1> <h1 id="logo-small">HEAD</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Categories</a></li>
</ul>
</nav>
</div>
</div>
<div class="main-content">
</div>
</body>
</html>

CSS:

/***********************************
LOGO
***********************************/

.header{
background-color: skyblue;
margin:0;
padding:0;
width: 100%;


}

.logo{
text-align: left;
display: block;
margin:0 15px 15px 15px;

}

#logo-large{
display: inline;
font-size: 3em;
font-weight: 200%;
font-family: 'Dosis' , sans-serif;
}

#logo-small{
display: inline;
font-weight:0;
font-size: 2.5em;
font-family: 'Dosis' ,sans-serif;
}


/************************************
NAVIGATION
************************************/

nav ul{
list-style-type:none;
}

nav{
display:inline;
float: right;
}

nav ul li{
display: inline-block;
padding: 5px 0px;
margin: 0;

}

nav ul li a{
text-decoration: none;
padding:20px 12px 12px 12px;
color:black;
font-family: 'Muli', sans-serif;
font-size: 1.25em;

}

nav ul li a:active, nav ul li a:hover{
background-color: deepskyblue;
color: white;
}



/*************************************
main content
*************************************/




body{
margin:0;
padding:0;
}

最佳答案

确保标签前后没有空格。

关于html - 固定标题向标题添加空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31344881/

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