07 - Static files

2018-09-12  本文已影响0人  AureliusShu

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;
    }
    
上一篇下一篇

猜你喜欢

热点阅读