跟templates一样,会自动定位每个INSTALLED_APPS里面的static目录
创建样式文件
MyDjnago > news > static > news > style.css
在模板文件中加载样式文件
MyDjango > news > templates > news > details.html
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'news/style.css' %}">
{% static %} 模板标签会生成静态文件的绝对路径。