我正在尝试拍摄一张图像并将其重复显示在我的网页顶部,但我什至无法显示它。我不知道如何正确指定 url。我需要在网站名称周围加上单引号。<!DOCTYPE html><html><head><style> html { background: url(fromthehartle.freeservers.com/images/CatTopBorder.gif) no-repeat center fixed; background-size: cover;}body { color: white; }</style></head><body><p>sample text</p></body></html>
2 回答
Smart猫小萌
TA贡献1911条经验 获得超7个赞
我无法显示您的 GIF,可能是因为它不是通过 https 传输的。我在支持 https 的服务器上重新上传了图像。您需要从正文中删除白色,否则您将无法看到文本
<html>
<head>
<style>
html {
background-image: url("https://i.ibb.co/bK2yczN/cat.png");
background-size: cover;
}
</style>
</head>
<body>
<p>sample text</p>
</body>
</html>
30秒到达战场
TA贡献1828条经验 获得超6个赞
<!DOCTYPE html>
<html>
<head>
<style>
.header {
background-image: url("http://fromthehartle.freeservers.com/images/CatTopBorder.gif");
height:100px;
}
body {
color: white;
}
</style>
</head>
<body>
<div class='header'>
<p>sample text</p>
</body>
</html>
- 2 回答
- 0 关注
- 83 浏览
添加回答
举报
0/150
提交
取消