gpt4 book ai didi

css -
内的背景图像不会显示

转载 作者:行者123 更新时间:2023-11-28 06:51:57 29 4
gpt4 key购买 nike

This picture在我的 section 标签内(下面的代码)不会显示在页面上。我想知道为什么...

HTML:

<!doctype html>
<html lang="pl">
<title>Strona</title>
<head>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet" screen="media,projection">
</head>
<body>
<section>
</section>
</body>
</html>

CSS:

html {
width:100%;
height:1230px;
}
body {
width:90%
height:100%;
}
section {
width:100%;
height:19.19%;
background:url(header.jpg); *this path should work because the file is on my hard drive, this is not the issue of the path..
background-size:100% 100%;
background-repeat:no-repeat;
}

另外,当我调整浏览器窗口大小时,我希望我的图片按比例(宽度和高度)缩放。

最佳答案

你的正文宽度语法错误缺少分号

html {
width:100%;
height:1230px;
}
body {
width:90%;
height:100%;
}
section {
width:100%;
height:19.19%;
background-image:url("http://s12.postimg.org/xx34q95m3/header.jpg");
background-size:100% 100%;
background-repeat:no-repeat;
}
<section></section>

关于css - <section> 内的背景图像不会显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33720657/

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