求助
  • 板块灌水区
  • 楼主Grace25
  • 当前回复11
  • 已保存回复11
  • 发布时间2021/2/23 20:01
  • 上次更新2023/11/5 02:48:51
查看原帖
求助
359883
Grace25楼主2021/2/23 20:01

本人在制作自己的blog时遇到了这个问题:

(blog的背景没了)

所以这是为啥啊QwQ

html代码:

{% extends "base.html" %}
{% block content %}
  <link rel="stylesheet" type="text/css" href="./static/blog.css" >
  {% for blog in blogs %}
    <blog><p style="font-size:45px">{{ blog.title }}</p><p>by {{ blog.author }}</p><hr /><p style="font-size:25px">{{ blog.text }}</p></blog>
  {% endfor %}
{% endblock %}

css代码:

blog{
  margin:20px;
  background-color:rgba(255,255,255,0.7);
  color:rgba(0,0,0,1);
  border-radius:.5rem;
  box-shadow: 1px 1px 5px rgba(136,136,136,0.7);
}
2021/2/23 20:01
加载中...