我是编程的新手,我正在学习HTML和CSS(对DOM还不太了解),但我听说使用单独的文件进行CSS样式表是一种很好的组织方式,所以我停止了使用标签,并为我的css代码创建了一个新文件。但是当我尝试使用标记时,它不会将我的.css文件链接到我的.html文件。我的html文件和我的css文件位于同一目录/文件夹中。我使用chromebook,并使用Caret / Material Neutron。这是我的链接标记:<link>
它有什么问题吗?
int count = 0;
ref.addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(DataSnapshot dataSnapshot, String s) {
count++;
if(count >= dataSnapshot.getChildrenCount()){
//stop progress bar here
}
}
标记后(但将url的最后一部分从index.html修改为style.css), CSS工作了!这很奇怪,但足够好。但这是正确的制作不同html页面的方法吗?
答案 0 :(得分:-1)
style.css和你的html文件必须在同一个文件夹中以这种方式使用它,并且css文件不能包含样式标记,只能包含样式。