大家好,我是社区的新手
所以我目前正在尝试使用 pycharm 制作一个 html 网站,我现在已经完成了大部分工作,但我想添加背景图片或颜色。 有谁知道它的代码吗?
我试过了
<img src='background.jpeg'>
还有
<style> </style>
我将图片保存在我的电脑上,但它不起作用
你的意思是像下面这样吗?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style2.css"> <!-- include the path to the style2.css if it's not in the same folder-->
<title>Document</title>
</head>
<body>
<h1>Something...</h1>
</body>
</html>
在你的style2.css中
body{
background-image: url('images/somepicture.jpeg'); /*assuming you have saved the picture in the images folder */
background-size: cover;
}