如何在 Django 模板中设置背景图像?假设我的背景图片的网址位于 www.randomlink.com/static/backgroundimagesplash.jpg
我看了看Pinterest主页。众所周知,Pinterest 是使用 Django 构建的。我在他们的主页上检查了他们的一些元素。
他们使用的图形之一是这里的初始图像:PinterestSplashImage.jpg
初始图像设置在底部中心。我注意到的一件事是,启动图像的大小相对于浏览器的大小进行了调整。
这是我当前的主页模板:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<link href="www.randomlink.com/static/favicon.ico" rel="icon" type="image/x-icon">
<head>
<title>Homepage</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<style>
body{
font-family:Arial,Helvetica,sans-serif;
font-size: 12px;
}
</style>
</head>
<body>
{{ state }}
<form action="/login/" method="post">
{% if next %}
<input type="hidden" name="next" value="{{ next }}" />
{% endif %}
username:
<input type="text" name="username" value="{{ username}}" /><br />
password:
<input type="password" name="password" value="" /><br />
<input type="submit" value="Log In" />
</form>
</body>
</html>
如何将 www.randomlink.com/static/backgroundimagesplash.jpg 设置在底部中心并使其可调整大小,就像 Pinterest 对其主页所做的那样?(为了论证,初始图像将与 Pinterest 初始图像的尺寸相同)