“css django” Réponses codées

Ajouter un fichier statique dans Django

STATICFILES_DIRS = [
    BASE_DIR / "static",
    '/var/www/static/',
]
Plain Pheasant

css django

{% load static %}

<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
Anxious Anaconda

CSS à Django

  <head>
    <link rel="stylesheet"  href="{%  static  'css/style.css'  %}">
    <title>Linguist</title>
  </head>

CSS à Django

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR,  'static')

Réponses similaires à “css django”

Questions similaires à “css django”

Plus de réponses similaires à “css django” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code