[css]全屏背景图片设置,django加载图片路径

<head>
<style type="text/css"> #bg
{ position:fixed; top:0; left:0; width:100%; height:100%; } #bg img { position:absolute; left:0; right:0; bottom:0; margin:auto; width:100%; height:100%; z-index:-1; } </style> </head> <body> <div class="container"> <div id="bg"> <img src="{% static 'img/login.jpg' %}" alt=""> </div> <div> 添加内容,该内容不会被遮挡,分割 </div>
</body>
原文地址:https://www.cnblogs.com/CQ-LQJ/p/5549296.html