07 - Static files

Static files

  1. Customize your app’s look and feel

    /* polls/static/polls/style.css */
    li a {
        color: green;
    }
    
    
    {% load static %}
    
    
    
  2. Adding a background-image

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

你可能感兴趣的:(07 - Static files)