代码之家  ›  专栏  ›  技术社区  ›  Mohammad Zubair

如何连接flask中的css文件??在不同的Syntex里?

  •  0
  • Mohammad Zubair  · 技术社区  · 2 年前

    你好,我有一个代码,但不知道如何在flask中连接css。 <link rel="stylesheet" href="css/styles.css"> 但它不起作用。烧瓶里的Syntex有什么不同吗?

    1 回复  |  直到 2 年前
        1
  •  0
  •   SHAIKH ZAID    2 年前

    将一个文件夹设为“静态”,并为css文件再设一个文件夹,这样就可以将css文件放入该文件夹。 <link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">