Django 기본 설명서 6 - 정적 파일

735 단어 django
Django를 사용하여 외부 파일 로드
Django에서 iamges, JS 또는 CSS를 통칭하여 static 파일
APP 모양 사용자 정의
일반적으로 응용 디렉터리 아래에 있는static/polls/디렉터리 아래에 polls/static/polls/style.css
li a {

    color: green;

}

테이블 항목의 색상이 녹색인 CSS 구문템플릿 파일polls/templates/polls/index.html에서 추가 시작
{% load staticfiles %}



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

첫 줄은staticfles 템플릿 라이브러리에서 {% static%} 템플릿 탭을 불러오는 것을 표시합니다.두 번째 비헤이비어 HTML 태그는 링크된 외부 스타일시트가 CSS에 추가되어 적용된 홈 페이지에 배경이 추가됨을 나타냅니다.
body {

    background: white url("images/background.gif") no-repeat right bottom;

}

좋은 웹페이지 즐겨찾기