我们将使用哪个标签和css来添加背景图像以及如何重新制作它的大小全长我已经尝试过在html的head部分background-image中使用外部css:URL();
u3r8eeie1#
您有两个选项:在CSS中创建它或阅读w3school中的文档。例如:
<html> <head> <style> body { background: url(https://cdn.urldecoder.org/assets/images/url-fb.png); background-repeat: no-repeat; background-size: 100% 100vh; </body> </head> <body> <p>hello</p> </body>
2nbm6dog2#
<html> <body> <style> body { background: url(# write the address of image); background-size: 100%; } </style> <p>HOPE IT HELPS !</p> </body>
2条答案
按热度按时间u3r8eeie1#
您有两个选项:在CSS中创建它或阅读w3school中的文档。
例如:
2nbm6dog2#