美文网首页
07 - Static files

07 - Static files

作者: AureliusShu | 来源:发表于2018-09-12 21:58 被阅读0次

Static files

  1. Customize your app’s look and feel

    /* polls/static/polls/style.css */
    li a {
        color: green;
    }
    
    <!-- polls/templates/polls/index.html -->
    {% load static %}
    
    <link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
    
  2. Adding a background-image

    /* polls/static/polls/style.css */
    body {
        background: white url("images/background.gif") no-repeat;
    }
    

相关文章

网友评论

      本文标题:07 - Static files

      本文链接:https://www.haomeiwen.com/subject/gwtigftx.html