gpt4 book ai didi

html - 页眉上的背景图像未显示

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

我刚刚开始编写一份新文档来测试一些技能。尝试制作带有文本叠加层的主图,其中包含号召性用语按钮,但我的背景图片未显示。

我知道它在那里,但它似乎被向上推了。当我检查元素并将填充设置为 200px 时,它会显示,但直接将代码放入文件中不会显示出来。

//CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
color: #555;
font-family: 'Lato', 'Arial', sans-serif;
font-weight: 300;
font-size: 20px;
text-rendering: optimizeLegibility;
}

.row {
max-width: 1140px;
}

.header {
background: url(img/hero.jpg);
background-size: cover;
background-position:center;
}

.hero-text-box {
position: absolute;
width: 1140px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

h1 {
margin: 0;
}

//HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="vendors/css/normalize.css">
<link rel="stylesheet" type="text/css" href="vendors/css/fluid- grid.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
<link href='https://fonts.googleapis.com/css?family=Lato:400,100,300,300italic' rel='stylesheet' type='text/css'>
<title>Test</title>
</head>


<body>
<header>

<div class="hero-text-box">
<h1>Welcome to my site</h1>
<a href="#">Call me</a>
<a href="#">Show me more</a>

</div>

</header>

</body>



</html>

文件夹结构

+ index.htm
+ css
+ img
+ style.css
+ js
+ scripts.js
+ img
+ data

最佳答案

.header改为header:

header {
background: url(img/hero.jpg);
background-size: cover;
background-position: center;
}

缺少图像问题

变回img/hero.jpg。您需要做的下一件事是关于 hv。这是错误的。要么把它写成vh,这也是不支持的,所以,最好使用:

header {
background-image: url(img/hero.jpg);
background-size: cover;
background-position:center;
height: 100%;
width: 100%;
position: fixed;
}

预览

translate 正在影响:

  transform: translate(0%, -50%);

查看输出: http://output.jsbin.com/furumogoxe

因此我也使用另一种方式对 CSS 进行了一些更改:

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
color: #555;
font-family: 'Lato', 'Arial', sans-serif;
font-weight: 300;
font-size: 20px;
text-rendering: optimizeLegibility;
height: 100%;
}

.row {
max-width: 1140px;
}

header {
background: url(img/hero.jpg);
background-size: cover;
background-position:center;
}

.hero-text-box {
position: absolute;
width: 1140px;
max-width: 100%;
text-align: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

h1 {
margin: 0;
}
<link href='https://fonts.googleapis.com/css?family=Lato:400,100,300,300italic' rel='stylesheet' type='text/css'>
<header>
<div class="hero-text-box">
<h1>Welcome to my site</h1>
<a href="#">Call me</a>
<a href="#">Show me more</a>
</div>
</header>

关于html - 页眉上的背景图像未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33986225/

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