我是bootstrap的新手,并尝试创建一个带有响应式导航栏的网页。一切都按照我想要的方式工作,当屏幕变得足够小以使其成为可折叠列表时,导航栏变得透明。我搜索过Chrome检查员无济于事,并尝试了我能想到的一切。有没有人有想法?
答案 0 :(得分:1)
将此行添加到您的css:
ID Letter
1 A
1 B
1 NULL << We kept the NULL
2 A
2 D
2 D
3 P
3 F
3 M
问题来自于您的行内容是在导航后创建的(在其前面),但是您在点击时展开了导航。为了防止这种情况,您只需要为导航提供比您的内容更大的z-index(默认为1)。
答案 1 :(得分:0)
我有同样的问题。只需更改您的scripts.js文件,或者如果还没有此文件,则将这行代码添加到您的scripts.js中。相应地将颜色更改为所需的颜色。
void InsertionSort(fields *records, char parameter ,int sizeofrecords) {
int i, j;
void* temp;
for (i = 1; i < size; i++) {
temp = records[i].parameter; //this command doesn't work (records[i])
j = i - 1;
while (j >= 0 && records[j].parameter> temp) {
records[j + 1].parameter= records[j].parameter;
j--;
}
records[j + 1].parameter= temp;
}
}