出于某种原因,当我运行服务器时,django只将我的样式表中的第一个样式应用到我的模板。例如,我写了三种风格:
#header {
text-align: center;
};
.header-element {
color: yellow;
};
#foo {
background-color: yellow;
}
在这种情况下,正在应用分配给#header的样式,但其他两个则不适用。
我假设我已正确引用了我的/ static /文件夹,因为第一个样式正在应用,而“base.css”也显示在chrome的“网络”选项卡中。
我的HTML如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'css/base.css' %}">
<title>DataClub</title>
</head>
<body>
<div id="header">
<h1 class="header-element">DataClub</h1>
<h3 id="foo" class="header-element">data driven aplications</h3>
<hr>
</div>
{% block body %}
{% endblock body %}
</body>
</html>
任何帮助将不胜感激
答案 0 :(得分:0)
这是因为你在每个定义之后添加#header {
text-align: center;
}; <--remove ";"
.header-element {
color: yellow;
}; <--remove ";"
#foo {
background-color: yellow;
}
并且除了第一个定义之外它们没有被解析
public class MusclesActivity extends AppCompatActivity {
Button btnRotate;
LinearLayout pic1,pic2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_muscles); // place it here
btnRotate = (Button)findViewById(R.id.btnRotate);
pic1 = (LinearLayout)findViewById(R.id.frontpic);
pic2 = (LinearLayout)findViewById(R.id.backpic);
}
您可以在此处查看CSS验证CSS Validation