- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经更改了标题,我对结果非常满意,但我的 h1 不在标题的顶部,而是在它的正下方。
我已经更改了 z-index、top、margin-top、padding 等,但它仍然不在标题的顶部,而是紧贴在标题的正下方。
#banner {
box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
width: 100%;
height: 70px;
z-index: 99999;
position: fixed;
top: 0;
left: 0;
}
header {
position: relative;
width: 100%;
height: 70px;
margin: 0 auto;
}
header hgroup {
position: absolute;
display: block;
top: 5px;
left: 20px;
}
header hgroup h1 {
font-size: 50px;
display: block;
height: 100px;
width: 610px;
}
nav {
float: right;
}
nav ul li:hover > ul {
display: block;
}
nav ul {
margin-top: 10px;
padding: 0 20px;
list-style: none;
position: relative;
display: inline-table;
}
nav ul:after {
content: "";
clear: both;
display: block;
}
nav ul li {
float: left;
}
nav ul li a {
display: block;
padding: 15px 15px;
font-family: 'Crimson Text', sans-serif;
text-decoration: none;
}
body {
background: #dcdcdc;
font-family: 'Montserrat', sans-serif;
font-weight: 300;
margin: 0px;
}
p, h1 {
font-family: 'Crimson Text', Serif;
}
ul, li {
list-style-type: none;
}
ul li {
display: inline-block;
box-sizing: border-box;
text-align: left;
}
.main-button {
display: inline-block;
width: 79px;
padding: 10px;
box-sizing: border-box;
text-align: center;
font-size: 16px;
}
.main-button:hover {
background: rgba(255, 255, 255, 0.1);
transition: 1s;
cursor: pointer;
}
h3 {
text-align: center;
font-size: 44px;
}
.container {
box-sizing: border-box;
margin: auto;
max-width: 70%;
padding: 20px;
}
.button {
display: inline-block;
width: 130px;
margin: 10px;
padding: 10px;
text-align: center;
text-decoration: none;
}
.button:hover {
background: rgb(0, 105, 242);
transition: 0.25s;
color: white;
cursor: pointer;
}
a {
text-decoration: none;
}
a:hover {
color: white;
transition: 0.5s;
}
.content1 {
background: rgba(255, 255, 255, 0.15);
}
.content2 {
background: rgba(255, 255, 255, 0.1);
}
@keyframes example {
0% {color: #e91e63;}
14% {color: #e74c3c;}
28% {color: #f1c40f;}
42% {color: #2ecc71;}
56% {color: #3498db;}
72% {color: #71368a;}
86% {color: #9b59b6;}
100% {color: #91e63;}
}
body, a {
color: red;
animation-name: example;
animation-duration: 10s;
animation-iteration-count: infinite;
}
.menu-list {
list-style-type: disc;
margin-block-start: 0;
margin-block-end: 0;
margin-inline-start: 0;
margin-inline-end: 0;
padding-inline-start: 0;
}
.menu-list .li {
margin: auto;
display: flex;
width: 60%;
/* 'justify-content: space-between;' does the trick of
separating the two items in the li */
justify-content: space-between;
border-bottom: 1px dotted;
}
.menu-list .li .title,
.menu-list .li .price {
display: flex;
}
.menu-list .li .title {
font-size: 18px;
align-self: flex-end;
}
.menu-list .li .price {
font-size: 30px;
}
<html>
<head>
<link rel="stylesheet" type="text/css" href="website.css">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text|Montserrat" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
</head>
<body>
<div id="banner">
<header>
<hgroup>
<h1>Silver · Spoon</h1>
</hgroup>
<nav>
<ul>
<li class="main-button home-button"><a class='page-button' data-page_num='1' href='javascript:voide(0)'>Home</a></li>
<li class="main-button menu1-button"><a class='page-button' data-page_num='2' href='javascript:voide(0)'>Drinks</a></li>
<li class="main-button menu2-button"><a class='page-button' data-page_num='3' href='javascript:voide(0)'>Snacks</a></li>
<li class="main-button about-button"><a class='page-button' data-page_num='4' href='javascript:voide(0)'>About</a></li>
</ul>
</nav>
</header>
</div>
<div class="page">
<div id="Home">
<div class="content1">
<div class="container">
<a class='page-button' data-page_num='2' href='javascript:voide(0)'>
<h3>Drinks Menu</h3>
</a>
<h4>Buy one, get 50% off.</h4>
<p>Silver Spoon has high-quality drinks that will quench your thirst at an affordable price. Find out more on the drinks menu.</p>
</div>
</div>
<div class="content2">
<div class="container">
<a class='page-button' data-page_num='3' href='javascript:voide(0)'>
<h3>Snacks Menu</h3>
</a>
<h4>Now introducing edible food.</h4>
<p>Silver Spoon has a high-quality snacks menu with affordable prices. Find out more on the food menu page.</p>
</div>
<div class="content1">
<div class="container">
<h3>About</h3>
<p>Read more about Silver Spoon on our about page.</p>
</div>
</div>
</div>
</div>
</div>
<div class="page">
<div id="Drinks">
<ul class="menu-list">
<li class="li"><span class="title">Cafe Americano</span><span class="price">3<sup>99</sup></span></li>
<li class="li"><span class="title">Iced Latte</span><span class="price">4<sup>99</sup></span></li>
<li class="li"><span class="title">Caramel Macchiato</span><span class="price">5<sup>50</sup></span></li>
<li class="li"><span class="title">Espresso</span><span class="price">4<sup>50</sup></span></li>
<li class="li"><span class="title">Blonde Roast</span><span class="price">3<sup>00</sup></span></li>
<li class="li"><span class="title">Iced Coffee w/ Milk</span><span class="price">4<sup>00</sup></span></li>
<li class="li"><span class="title">Cold Brew w/ Foam</span><span class="price">4<sup>50</sup></span></li>
<li class="li"><span class="title">Dark Roast</span><span class="price">3<sup>00</sup></span></li>
<li class="li"><span class="title">Hot Chocolate</span><span class="price">4<sup>00</sup></span></li>
</div>
</div>
</div>
<div class="page">
<div id="About">
<div class="content1">
<div class="container">
<h3>About Us</h3>
<p>Silver Spoon is dedicated to producing affordable but exquisite food that will satisfy our customers. </p>
</div>
</div>
</div>
</div>
</body>
</html>
我希望 h1 位于标题上方,而不是下方。
最佳答案
在您的代码中添加 margin: 0
并且为了看起来不错,我将您的字体大小减小了 10px
#banner {
box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
width: 100%;
height: 70px;
z-index: 99999;
position: fixed;
top: 0;
left: 0;
}
header {
position: relative;
width: 100%;
height: 70px;
margin: 0 auto;
}
header hgroup {
position: absolute;
display: block;
top: 5px;
left: 20px;
}
header hgroup h1 {
margin: 0;
font-size: 40px;
display: block;
height: 100px;
width: 610px;
}
nav {
float: right;
}
nav ul li:hover > ul {
display: block;
}
nav ul {
margin-top: 10px;
padding: 0 20px;
list-style: none;
position: relative;
display: inline-table;
}
nav ul:after {
content: "";
clear: both;
display: block;
}
nav ul li {
float: left;
}
nav ul li a {
display: block;
padding: 15px 15px;
font-family: 'Crimson Text', sans-serif;
text-decoration: none;
}
body {
background: #dcdcdc;
font-family: 'Montserrat', sans-serif;
font-weight: 300;
margin: 0px;
}
p, h1 {
font-family: 'Crimson Text', Serif;
}
ul, li {
list-style-type: none;
}
ul li {
display: inline-block;
box-sizing: border-box;
text-align: left;
}
.main-button {
display: inline-block;
width: 79px;
padding: 10px;
box-sizing: border-box;
text-align: center;
font-size: 16px;
}
.main-button:hover {
background: rgba(255, 255, 255, 0.1);
transition: 1s;
cursor: pointer;
}
h3 {
text-align: center;
font-size: 44px;
}
.container {
box-sizing: border-box;
margin: auto;
max-width: 70%;
padding: 20px;
}
.button {
display: inline-block;
width: 130px;
margin: 10px;
padding: 10px;
text-align: center;
text-decoration: none;
}
.button:hover {
background: rgb(0, 105, 242);
transition: 0.25s;
color: white;
cursor: pointer;
}
a {
text-decoration: none;
}
a:hover {
color: white;
transition: 0.5s;
}
.content1 {
background: rgba(255, 255, 255, 0.15);
}
.content2 {
background: rgba(255, 255, 255, 0.1);
}
@keyframes example {
0% {color: #e91e63;}
14% {color: #e74c3c;}
28% {color: #f1c40f;}
42% {color: #2ecc71;}
56% {color: #3498db;}
72% {color: #71368a;}
86% {color: #9b59b6;}
100% {color: #91e63;}
}
body, a {
color: red;
animation-name: example;
animation-duration: 10s;
animation-iteration-count: infinite;
}
.menu-list {
list-style-type: disc;
margin-block-start: 0;
margin-block-end: 0;
margin-inline-start: 0;
margin-inline-end: 0;
padding-inline-start: 0;
}
.menu-list .li {
margin: auto;
display: flex;
width: 60%;
/* 'justify-content: space-between;' does the trick of
separating the two items in the li */
justify-content: space-between;
border-bottom: 1px dotted;
}
.menu-list .li .title,
.menu-list .li .price {
display: flex;
}
.menu-list .li .title {
font-size: 18px;
align-self: flex-end;
}
.menu-list .li .price {
font-size: 30px;
}
<html>
<head>
<link rel="stylesheet" type="text/css" href="website.css">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text|Montserrat" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
</head>
<body>
<div id="banner">
<header>
<hgroup>
<h1>Silver · Spoon</h1>
</hgroup>
<nav>
<ul>
<li class="main-button home-button"><a class='page-button' data-page_num='1' href='javascript:voide(0)'>Home</a></li>
<li class="main-button menu1-button"><a class='page-button' data-page_num='2' href='javascript:voide(0)'>Drinks</a></li>
<li class="main-button menu2-button"><a class='page-button' data-page_num='3' href='javascript:voide(0)'>Snacks</a></li>
<li class="main-button about-button"><a class='page-button' data-page_num='4' href='javascript:voide(0)'>About</a></li>
</ul>
</nav>
</header>
</div>
<div class="page">
<div id="Home">
<div class="content1">
<div class="container">
<a class='page-button' data-page_num='2' href='javascript:voide(0)'>
<h3>Drinks Menu</h3>
</a>
<h4>Buy one, get 50% off.</h4>
<p>Silver Spoon has high-quality drinks that will quench your thirst at an affordable price. Find out more on the drinks menu.</p>
</div>
</div>
<div class="content2">
<div class="container">
<a class='page-button' data-page_num='3' href='javascript:voide(0)'>
<h3>Snacks Menu</h3>
</a>
<h4>Now introducing edible food.</h4>
<p>Silver Spoon has a high-quality snacks menu with affordable prices. Find out more on the food menu page.</p>
</div>
<div class="content1">
<div class="container">
<h3>About</h3>
<p>Read more about Silver Spoon on our about page.</p>
</div>
</div>
</div>
</div>
</div>
<div class="page">
<div id="Drinks">
<ul class="menu-list">
<li class="li"><span class="title">Cafe Americano</span><span class="price">3<sup>99</sup></span></li>
<li class="li"><span class="title">Iced Latte</span><span class="price">4<sup>99</sup></span></li>
<li class="li"><span class="title">Caramel Macchiato</span><span class="price">5<sup>50</sup></span></li>
<li class="li"><span class="title">Espresso</span><span class="price">4<sup>50</sup></span></li>
<li class="li"><span class="title">Blonde Roast</span><span class="price">3<sup>00</sup></span></li>
<li class="li"><span class="title">Iced Coffee w/ Milk</span><span class="price">4<sup>00</sup></span></li>
<li class="li"><span class="title">Cold Brew w/ Foam</span><span class="price">4<sup>50</sup></span></li>
<li class="li"><span class="title">Dark Roast</span><span class="price">3<sup>00</sup></span></li>
<li class="li"><span class="title">Hot Chocolate</span><span class="price">4<sup>00</sup></span></li>
</div>
</div>
</div>
<div class="page">
<div id="About">
<div class="content1">
<div class="container">
<h3>About Us</h3>
<p>Silver Spoon is dedicated to producing affordable but exquisite food that will satisfy our customers. </p>
</div>
</div>
</div>
</div>
</body>
</html>
关于html - 如何修复标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56483732/
我将一个 div 设置为 100% 宽度,当以 1024 分辨率查看页面时,宽度应从 100% 变为 1000px,我让它与@media 查询一起正常工作,并且在 FF、safari chrome 上
希望有人能帮助我,我已经被困了几天了。 将我的 Domino 服务器更新到 9.01 Fix 3 后,我在 javascript 控制台上不断收到错误消息: TypeError: this.edito
我们正在使用一个基于RMI的java应用程序。当我们运行应用程序时,即使应用程序处于理想阶段,内存使用量仍然不断增加。我们主要使用Vector和散列图数据结构。如何最大限度地减少java内存使用/修复
概述 Internet Download Manager (IDM)是最流行的 Windows 下载管理器。如果你平时工作中使用过IDM,您会惊叹 IDM 下载文件的速度有多快。IDM
当我打开 brave 浏览器时,会打开一个窗口(如下所示)。它并没有真正干扰浏览器的处理。但令人担忧的是为什么这种情况一直发生...... Error On Opening Brave Browser
这是我今天在求职面试中被问到的一个问题: 看下面的代码: int n=20; for (int i =0; i
我不小心删除了/opt/local/bin/perl5.8.9 ,这似乎是 macports 编译的 perl 的主要二进制文件。 现在我有很多取决于 perl5 的端口,但不想卸载并重新安装所有端口
>>>flip fix (0 :: Int) (\a b -> putStrLn "abc") Output: "abc" 这是使用翻转修复的简化版本。 我在一些 YouTube 视频中看到了这种使用
这个问题已经有答案了: How can I fix 'android.os.NetworkOnMainThreadException'? (64 个回答) 已关闭 3 年前。 我在 Android 应
def main(): cash = float(input("How much money: ")) coins = 0 def changeCounter(n): whil
前一周我遇到了类似的问题,查询需要永远运行。在编写此查询时,我尝试应用从其他查询中学到的一些知识,但执行起来需要很长时间。 运行查询的两个单独部分时,每个部分需要 2 分钟才能完成,这是可以接受的,但
下午,我的 CSS 有问题。第三个下拉菜单放错了,我没有解决办法。 这是我想要的: 之前: http://i53.tinypic.com/2qu85z8.png 之后: http://i51.tiny
更新方法: override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingS
我知道这是一个很多人都遇到过的问题,但我不熟悉 Less 并且是 Bootstrap 的新手,我正在寻找一种全 CSS 解决方案来防止我的导航栏折叠到 768 像素以下:
在我的布局中,我创建了以下 jsfiddle 托管的可调整大小的粘性页脚。但是,在调整大小时它与内容重叠。有没有办法让它在所有浏览器上都能响应? http://jsfiddle.net/9aLc0mg
我想要实现的目标 racer-offset 是为了让用户可以设置图像可以以 px 为单位移动多远。偏移量管理偏移量。 Speed-racer 告诉我们图像在滚动过程中移动的速度。我的问题是它不会停止。
我有一个简单的自动换行函数,它接受一个长字符串作为输入,然后将该字符串分成更小的字符串,并将它们添加到一个数组中,以便稍后输出。现在最后一两个字没有输出。这是主要问题。但是,我还想改进功能。我知道这有
我试图在使用每个 slider 之前禁用“下一步”按钮,我不确定为什么在单击不再是 class="not-clicked"的同一个 slider 时取消禁用该按钮. JSFiddle: (这里看起来有
这个问题已经有答案了: What is a NullPointerException, and how do I fix it? (12 个回答) 已关闭 8 年前。 如何让程序输出所有信息? IT
On this page ,在“生活”下有一个带有自动生成的子菜单的菜单。子菜单存在一些问题(它会闪烁并改变大小——如果你滚动它就会看到)。我需要以某种方式覆盖它当前正在读取的 css 并使其统一。
我是一名优秀的程序员,十分优秀!