无法弄清楚如何指定后台 url 网页

我正在尝试拍摄一张图像并将其重复显示在我的网页顶部,但我什至无法显示它。我不知道如何正确指定 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>


浮云间
浏览 84回答 2
2回答

Smart猫小萌

我无法显示您的 GIF,可能是因为它不是通过 https 传输的。我在支持 https 的服务器上重新上传了图像。您需要从正文中删除白色,否则您将无法看到文本<html>&nbsp;<head>&nbsp; &nbsp; <style>&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; html {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; background-image: url("https://i.ibb.co/bK2yczN/cat.png");&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; background-size: cover;&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; </style></head>&nbsp;&nbsp;<body>&nbsp;&nbsp; &nbsp; <p>sample text</p></body></html>

30秒到达战场

<!DOCTYPE html><html><head><style>&nbsp;.header {&nbsp;&nbsp; &nbsp;background-image: url("http://fromthehartle.freeservers.com/images/CatTopBorder.gif");&nbsp; &nbsp;height:100px;}body {&nbsp;&nbsp;color: white;&nbsp;}</style></head><body><div class='header'><p>sample text</p></body></html>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5